Modernize testcase
authorChris Lattner <sabre@nondot.org>
Wed, 4 Jun 2003 04:47:40 +0000 (04:47 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 4 Jun 2003 04:47:40 +0000 (04:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6600 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/set.ll

index 1e31e0df2e07956ba322fb40658c54c86714896f..b0e9fa48a4874a7445e49a974b41458179c0d2cf 100644 (file)
@@ -8,46 +8,46 @@
 
 %X = uninitialized global int
 
-bool "test1"(int %A) {
+bool %test1(int %A) {
        %B = seteq int %A, %A
        %C = seteq int* %X, null   ; Never true
        %D = and bool %B, %C
        ret bool %D
 }
 
-bool "test2"(int %A) {
+bool %test2(int %A) {
        %B = setne int %A, %A
        %C = setne int* %X, null   ; Never false
        %D = or bool %B, %C
        ret bool %D
 }
 
-bool "test3"(int %A) {
+bool %test3(int %A) {
        %B = setlt int %A, %A
        ret bool %B
 }
 
-bool "test4"(int %A) {
+bool %test4(int %A) {
        %B = setgt int %A, %A
        ret bool %B
 }
 
-bool "test5"(int %A) {
+bool %test5(int %A) {
        %B = setle int %A, %A
        ret bool %B
 }
 
-bool "test6"(int %A) {
+bool %test6(int %A) {
        %B = setge int %A, %A
        ret bool %B
 }
 
-bool "test7"(uint %A) {
+bool %test7(uint %A) {
        %B = setge uint %A, 0  ; true
        ret bool %B
 }
 
-bool "test8"(uint %A) {
+bool %test8(uint %A) {
        %B = setlt uint %A, 0  ; false
        ret bool %B
 }