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/2265-checker-select-binary-unary/src/Main.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/2265-checker-select-binary-unary/src') diff --git a/test/2265-checker-select-binary-unary/src/Main.java b/test/2265-checker-select-binary-unary/src/Main.java index 94c2bf7796..61f4b053aa 100644 --- a/test/2265-checker-select-binary-unary/src/Main.java +++ b/test/2265-checker-select-binary-unary/src/Main.java @@ -31,7 +31,7 @@ public class Main { assertIntEquals(12, $noinline$testLongToInt(1, 0)); } - /// CHECK-START: long Main.$noinline$testIntToLong(int, int) code_flow_simplifier (after) + /// CHECK-START: long Main.$noinline$testIntToLong(int, int) control_flow_simplifier (after) /// CHECK: <> LongConstant 10 /// CHECK: <> IntConstant 1 /// CHECK: <> IntConstant 2 @@ -54,7 +54,7 @@ public class Main { return result + (a < b ? c : d); } - /// CHECK-START: float Main.$noinline$testIntToFloat(int, int) code_flow_simplifier (after) + /// CHECK-START: float Main.$noinline$testIntToFloat(int, int) control_flow_simplifier (after) /// CHECK: <> FloatConstant 10 /// CHECK: <> IntConstant 1 /// CHECK: <> IntConstant 2 @@ -77,7 +77,7 @@ public class Main { return result + (a < b ? c : d); } - /// CHECK-START: byte Main.$noinline$testIntToByte(int, int) code_flow_simplifier (after) + /// CHECK-START: byte Main.$noinline$testIntToByte(int, int) control_flow_simplifier (after) /// CHECK: <> IntConstant 10 /// CHECK: <> IntConstant 257 /// CHECK: <> IntConstant 258 @@ -102,7 +102,7 @@ public class Main { return (byte) (result + (byte) (a < b ? c : d)); } - /// CHECK-START: int Main.$noinline$testLongToInt(int, int) code_flow_simplifier (after) + /// CHECK-START: int Main.$noinline$testLongToInt(int, int) control_flow_simplifier (after) /// CHECK: <> IntConstant 10 /// CHECK: <> LongConstant 4294967297 /// CHECK: <> LongConstant 4294967298 -- cgit v1.2.3-59-g8ed1b