aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-07-24 19:42:28 +0000
committerChris Lattner <sabre@nondot.org>2003-07-24 19:42:28 +0000
commitd2a0896832a51a42dca2395c54b70330e9e9af18 (patch)
tree681dec82ebf48de4af0f683500949cefd957d31e
parentb5874f1499743aa99addfc72ab68f970a08af81a (diff)
Modernize testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7297 91177308-0d34-0410-b5e6-96231b3b80d8
-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
}