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

@ -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;
}
}