summaryrefslogtreecommitdiff
path: root/test/657-branches/src/Main.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/657-branches/src/Main.java')
-rw-r--r--test/657-branches/src/Main.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/657-branches/src/Main.java b/test/657-branches/src/Main.java
index 2b62c5faa1..bb448eb44e 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 select_generator pass, which cannot change the
+ // 2) We then run the code_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 select_generator). This used
+ // contains no instruction (usually removed by code_flow_simplifier). This used
// to trip the ARM code generators.
if (f < 1.2f) {
foo(Main.class, Object.class);