summaryrefslogtreecommitdiff
path: root/test/2265-checker-select-binary-unary/src
diff options
context:
space:
mode:
author Android Build Coastguard Worker <android-build-coastguard-worker@google.com> 2025-01-24 18:02:00 -0800
committer Android Build Coastguard Worker <android-build-coastguard-worker@google.com> 2025-01-24 18:02:00 -0800
commitb0e55cccb49d459cbf63d8add1b60aa18fba52a2 (patch)
treef2db9d456ce877a4cf9a2ffdfc3844ff29e8846c /test/2265-checker-select-binary-unary/src
parent35f3a8a1c34cb233fee43885cf4626dfb45f6bbe (diff)
parentf3c480ffeb31af6c99858b5608ed610018062dae (diff)
Snap for 12969164 from f3c480ffeb31af6c99858b5608ed610018062dae to 25Q2-release
Change-Id: I2c4aabe02793d21090d9f1c9e3a04f3dd1933364
Diffstat (limited to 'test/2265-checker-select-binary-unary/src')
-rw-r--r--test/2265-checker-select-binary-unary/src/Main.java8
1 files changed, 4 insertions, 4 deletions
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: <<Const10:j\d+>> LongConstant 10
/// CHECK: <<Const1:i\d+>> IntConstant 1
/// CHECK: <<Const2:i\d+>> 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: <<Const10:f\d+>> FloatConstant 10
/// CHECK: <<Const1:i\d+>> IntConstant 1
/// CHECK: <<Const2:i\d+>> 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: <<Const10:i\d+>> IntConstant 10
/// CHECK: <<Const257:i\d+>> IntConstant 257
/// CHECK: <<Const258:i\d+>> 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: <<Const10:i\d+>> IntConstant 10
/// CHECK: <<Const1:j\d+>> LongConstant 4294967297
/// CHECK: <<Const2:j\d+>> LongConstant 4294967298