Multiple exit loop handling in ivopts. Regression tested on x86-64/linux
[official-gcc.git] / libjava / testsuite / libjava.lang / PR19921.java
blob0758d661d6e2883e09c507a73a0ad7ac5b552072
1 interface I {
2 void f(Object x);
5 class PR19921 {
6 static void g(I i) {
7 // gcj used to create invalid bytecode for this.
8 i.f(new Object[1][1]);
10 public static void main(String[] args) { }