# HG changeset patch # User Josef Eisl # Date 1401178948 -7200 # Node ID 4b835260c7460f5a5c2b7e6cd3a2aa7dcfbd79f3 # Parent 0bfce53285102912c19a7d9ed0180dde4bac0068 backout 88a6017687c9 diff -r 0bfce5328510 -r 4b835260c746 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java Mon May 26 20:27:28 2014 +0200 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java Tue May 27 10:22:28 2014 +0200 @@ -2057,7 +2057,7 @@ int numUsePos = usePosList.size(); for (int useIdx = 0; useIdx < numUsePos; useIdx++) { Interval.RegisterPriority priority = usePosList.registerPriority(useIdx); - if (priority.greaterEqual(Interval.RegisterPriority.ShouldHaveRegister)) { + if (priority == Interval.RegisterPriority.ShouldHaveRegister) { return null; } }