OSDN Git Service

* config/i386/i386.md (*sinxf2): Rename to *sinxf2_i387.
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.compile / PR140.java
1 public class PR140 {
2   public static void fill(int[] a) {
3     for (int i = 0; i < a.length; i++) {
4       a[i] = i;
5     }
6   }
7   public static void main(String[] args) {
8     int[] a = new int[3];
9     fill(a);
10     a.length = 3000;
11     fill(a);
12   }
13 }