aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/InstCombine/setcc-strength-reduce.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/InstCombine/setcc-strength-reduce.ll b/test/Transforms/InstCombine/setcc-strength-reduce.ll
index 17ad7dc2e6..36114cab79 100644
--- a/test/Transforms/InstCombine/setcc-strength-reduce.ll
+++ b/test/Transforms/InstCombine/setcc-strength-reduce.ll
@@ -5,17 +5,17 @@
; RUN: as < %s | opt -instcombine | dis | grep -v seteq | grep -v setne | not grep set
-bool "test1"(uint %A) {
+bool %test1(uint %A) {
%B = setge uint %A, 1 ; setne %A, 0
ret bool %B
}
-bool "test2"(uint %A) {
+bool %test2(uint %A) {
%B = setgt uint %A, 0 ; setne %A, 0
ret bool %B
}
-bool "test3"(sbyte %A) {
+bool %test3(sbyte %A) {
%B = setge sbyte %A, -127 ; setne %A, -128
ret bool %B
}