public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: Martin Kahlert <martin.kahlert@infineon.com>
To: gcc-gnats@gcc.gnu.org
Subject: java/2299: Problem with String Arrays and +=
Date: Fri, 16 Mar 2001 02:18:00 -0000	[thread overview]
Message-ID: <200103161003.LAA32320@keksy.muc.infineon.com> (raw)

>Number:         2299
>Category:       java
>Synopsis:       Use of += for String arrays produces Segfault during compilation
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Fri Mar 16 02:16:01 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Martin Kahlert
>Release:        3.0 20010312 (prerelease)
>Organization:
Infineon AG
>Environment:
System: Linux keksy 2.2.18 #5 SMP Wed Jan 24 09:24:42 CET 2001 i686 unknown
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: i686-pc-linux-gnu
configured with: ../configure --prefix=/sw/gcc-3 --enable-languages=c++,f77,java --enable-threads=posix
>Description:
	The += operator for string arrays does not work. 
        It works for strings.
        s[0] = s[0] + string works, too, though this should be equivalent to s[0] += string

        This error report is meant to replace the report
        java/2008: ICE in gcj (no optimization), 
        because it is a much simpler testcase.
        Sorry, i don't know how to do that myself.
>How-To-Repeat:
cat buggy.java
public class buggy
{
 public static void main(String[] args)
    {
     String s[] = new String[1];

     s[0] =  "";
     s[0] += "";
    }
}
gcj -c buggy.java
buggy.java: In class `buggy':
buggy.java: In method `buggy.main(java.lang.String[])':
buggy.java:8: Internal error: Segmentation fault
Please submit a full bug report, with preprocessed source if appropriate.
See <URL: http://www.gnu.org/software/gcc/bugs.html > for instructions.

>Fix:
	Workaround: Use s[0] = s[0] + "" instead of s[0] += ""
>Release-Note:
>Audit-Trail:
>Unformatted:


                 reply	other threads:[~2001-03-16  2:18 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200103161003.LAA32320@keksy.muc.infineon.com \
    --to=martin.kahlert@infineon.com \
    --cc=gcc-gnats@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).