summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-04 04:47:40 +0000
committerChris Lattner <sabre@nondot.org>2003-06-04 04:47:40 +0000
commit1812a9b92d6e372bc68ff1076eac1248c465e059 (patch)
tree5d8324db47d2c706dcc418b6d0b499b2244b6b99 /test
parentc4d10ebcd7f28cdea265483b7231c3a5ca9e6485 (diff)
downloadllvm-1812a9b92d6e372bc68ff1076eac1248c465e059.tar.gz
llvm-1812a9b92d6e372bc68ff1076eac1248c465e059.tar.bz2
llvm-1812a9b92d6e372bc68ff1076eac1248c465e059.tar.xz
Modernize testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6600 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/set.ll16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/Transforms/InstCombine/set.ll b/test/Transforms/InstCombine/set.ll
index 1e31e0df2e..b0e9fa48a4 100644
--- a/test/Transforms/InstCombine/set.ll
+++ b/test/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
}