Modernize testcase
authorChris Lattner <sabre@nondot.org>
Thu, 24 Jul 2003 19:42:28 +0000 (19:42 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 24 Jul 2003 19:42:28 +0000 (19:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7297 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/setcc-strength-reduce.ll

index 17ad7dc2e69ac8750c7f00af260009f9952fb188..36114cab79a703e1d1b8b7aa2256f899e22145a2 100644 (file)
@@ -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
 }