diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-06-04 04:47:40 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-06-04 04:47:40 +0000 |
| commit | d3ce33c422fc9316cceada9a6698cd7a50841e3a (patch) | |
| tree | 35150d4ebff0c530e91467f8c8e58c9e6854406d | |
| parent | 9eef8a78b42bd37f9662d280b2c2cb74a0722c07 (diff) | |
| download | bcm5719-llvm-d3ce33c422fc9316cceada9a6698cd7a50841e3a.tar.gz bcm5719-llvm-d3ce33c422fc9316cceada9a6698cd7a50841e3a.zip | |
Modernize testcase
llvm-svn: 6600
| -rw-r--r-- | llvm/test/Regression/Transforms/InstCombine/set.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/Regression/Transforms/InstCombine/set.ll b/llvm/test/Regression/Transforms/InstCombine/set.ll index 1e31e0df2e0..b0e9fa48a48 100644 --- a/llvm/test/Regression/Transforms/InstCombine/set.ll +++ b/llvm/test/Regression/Transforms/InstCombine/set.ll @@ -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 } |

