This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Bug#99038: internal error using static synchronized
- To: Matthias Klose <doko at cs dot tu-berlin dot de>
- Subject: Re: Bug#99038: internal error using static synchronized
- From: Tom Tromey <tromey at redhat dot com>
- Date: 31 May 2001 09:08:55 -0600
- Cc: java at gcc dot gnu dot org, 99038 at bugs dot debian dot org
- References: <20010528162655.9FF6B5840@hunny.softlab.se> <15125.22768.987113.923189@bolero>
- Reply-To: tromey at redhat dot com
>>>>> "Matthias" == Matthias Klose <doko@cs.tu-berlin.de> writes:
Matthias> class Bug {
Matthias> static synchronized Object get(int i) { return null; }
Matthias> static synchronized Object get() { return get(1); }
Matthias> }
This fails for me (on x86) with -O1, but not with -O0.
Tom