re PR java/17329 (ICE: SEGV in java_gimplify_expr)

PR java/17329:
	* testsuite/libjava.compile/pr17329.java: New file.

From-SVN: r87960
This commit is contained in:
Tom Tromey 2004-09-23 16:24:42 +00:00 committed by Tom Tromey
parent 2fc8ee77e0
commit 51c9fed94b
2 changed files with 17 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2004-09-23 Tom Tromey <tromey@redhat.com>
PR java/17329:
* testsuite/libjava.compile/pr17329.java: New file.
PR java/17380:
* testsuite/libjava.jacks/jacks.xfail: Added 9.2-implicit-6 and
9.2-implicit-7.

View File

@ -0,0 +1,14 @@
// gcj had a problem with "SomeClass.field++" when gimplifying.
class helper
{
static int value;
}
public class pr17329
{
static void doit ()
{
helper.value += 2;
}
}