OSDN Git Service

For PR java/6519:
authormark <mark@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 4 May 2002 13:26:13 +0000 (13:26 +0000)
committermark <mark@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 4 May 2002 13:26:13 +0000 (13:26 +0000)
* parse.y (build_string_concatenation): Return just op1 only when op2
is null and op1 is a STRING_CST, otherwise always construct a
StringBuffer.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53158 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/ChangeLog
gcc/java/parse.y

index 461f130..a4b7a38 100644 (file)
@@ -1,3 +1,10 @@
+2002-05-04  Mark Wielaard  <mark@klomp.org>
+
+       For PR java/6519:
+       * parse.y (build_string_concatenation): Return just op1 only when op2
+       is null and op1 is a STRING_CST, otherwise always construct a
+       StringBuffer.
+
 2002-04-27  Tom Tromey  <tromey@redhat.com>
 
        For PR java/6382:
index 00f064d..c45ff1e 100644 (file)
@@ -13834,8 +13834,8 @@ build_string_concatenation (op1, op2)
     op2 = patch_string_cst (op2);
 
   /* If either one of the constant is null and the other non null
-     operand is a String object, return it. */
-  if (JSTRING_TYPE_P (TREE_TYPE (op1)) && !op2)
+     operand is a String constant, return it. */
+  if ((TREE_CODE (op1) == STRING_CST) && !op2)
     return op1;
 
   /* If OP1 isn't already a StringBuffer, create and