From f79077ad9e7b1e5b885466dce7f672130ee7efea Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Thu, 23 Jan 2025 14:45:35 +0000 Subject: Optimizing: Rename `HCodeFlowSimplifier`... ... to `HControlFlowSimplifier` because "control flow" is the correct technical term. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Change-Id: I2607ac699fa33c3e7ca7f54364e1e8497148412b --- test/458-checker-instruct-simplification/src/Main.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/458-checker-instruct-simplification/src') diff --git a/test/458-checker-instruct-simplification/src/Main.java b/test/458-checker-instruct-simplification/src/Main.java index 9600c43028..f65d339dae 100644 --- a/test/458-checker-instruct-simplification/src/Main.java +++ b/test/458-checker-instruct-simplification/src/Main.java @@ -1231,7 +1231,7 @@ public class Main { /// CHECK-DAG: <> Phi [<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: int Main.$noinline$booleanFieldNotEqualOne() code_flow_simplifier (after) + /// CHECK-START: int Main.$noinline$booleanFieldNotEqualOne() control_flow_simplifier (after) /// CHECK-DAG: <> StaticFieldGet /// CHECK-DAG: <> IntConstant 13 /// CHECK-DAG: <> IntConstant 54 @@ -1252,7 +1252,7 @@ public class Main { /// CHECK-DAG: <> Phi [<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: int Main.$noinline$booleanFieldEqualZero() code_flow_simplifier (after) + /// CHECK-START: int Main.$noinline$booleanFieldEqualZero() control_flow_simplifier (after) /// CHECK-DAG: <> StaticFieldGet /// CHECK-DAG: <> IntConstant 13 /// CHECK-DAG: <> IntConstant 54 @@ -1278,7 +1278,7 @@ public class Main { /// CHECK-DAG: <> Phi [<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: int Main.$noinline$intConditionNotEqualOne(int) code_flow_simplifier (after) + /// CHECK-START: int Main.$noinline$intConditionNotEqualOne(int) control_flow_simplifier (after) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 13 /// CHECK-DAG: <> IntConstant 42 @@ -1308,7 +1308,7 @@ public class Main { /// CHECK-DAG: <> Phi [<>,<>] /// CHECK-DAG: Return [<>] - /// CHECK-START: int Main.$noinline$intConditionEqualZero(int) code_flow_simplifier (after) + /// CHECK-START: int Main.$noinline$intConditionEqualZero(int) control_flow_simplifier (after) /// CHECK-DAG: <> ParameterValue /// CHECK-DAG: <> IntConstant 13 /// CHECK-DAG: <> IntConstant 42 -- cgit v1.2.3-59-g8ed1b