diff options
Diffstat (limited to 'test/657-branches/src/Main.java')
-rw-r--r-- | test/657-branches/src/Main.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/657-branches/src/Main.java b/test/657-branches/src/Main.java index bb448eb44e..138e507139 100644 --- a/test/657-branches/src/Main.java +++ b/test/657-branches/src/Main.java @@ -19,11 +19,11 @@ public class Main { public static void foo(float f) { // The reason this used to break: // 1) We inline the 'foo' call, so blocks now only contain HLoadClass instructions. - // 2) We then run the code_flow_simplifier pass, which cannot change the + // 2) We then run the control_flow_simplifier pass, which cannot change the // if/else because blocks contain instructions. // 3) We run GVN which will remove the HLoadClass instructions in the blocks. // 4) At code generation, we are in the unlikely situation that a diamond shape - // contains no instruction (usually removed by code_flow_simplifier). This used + // contains no instruction (usually removed by control_flow_simplifier). This used // to trip the ARM code generators. if (f < 1.2f) { foo(Main.class, Object.class); |