Status fields:
| creation_ts: | 2015-06-02 11:42 |
|---|---|
| component: | compiler2 |
| version: | 1.6.1 |
| rep_platform: | All |
| op_sys: | All |
| bug_status: | RESOLVED |
| resolution: | FIXED |
| reporter: | e1028297@student.tuwien.ac.at |
error: Fixed Interval is blocked
spilling not yet implemented LivetimeInterval (Def [0012] X86_64MovInst vreg5 -> RAX)
in RAX (init:RAX) (hint:vreg5)
error during pass LinearScanAllocatorPass
Simple Program to reproduce:
public class test2 {
public int t (int n) {
int a = n+1;
int b = a*a;
int c = b+b;
int d = b+2;
return d;
}
public static void main(String[] args) {
test2 t = new test2();
System.out.println(t.t(7));
}
}
Fixed with commit 9c8e750