[llvm-commits] CVS: llvm/test/Regression/Transforms/InstCombine/and.ll
Chris Lattner
lattner at cs.uiuc.edu
Tue Feb 18 12:07:01 PST 2003
Changes in directory llvm/test/Regression/Transforms/InstCombine:
and.ll updated: 1.3 -> 1.4
---
Log message:
Modernize testcase
---
Diffs of the changes:
Index: llvm/test/Regression/Transforms/InstCombine/and.ll
diff -u llvm/test/Regression/Transforms/InstCombine/and.ll:1.3 llvm/test/Regression/Transforms/InstCombine/and.ll:1.4
--- llvm/test/Regression/Transforms/InstCombine/and.ll:1.3 Fri Aug 2 14:27:57 2002
+++ llvm/test/Regression/Transforms/InstCombine/and.ll Tue Feb 18 12:06:44 2003
@@ -8,32 +8,32 @@
implementation
-int "test1"(int %A) {
+int %test1(int %A) {
%B = and int %A, 0 ; zero result
ret int %B
}
-int "test2"(int %A) {
+int %test2(int %A) {
%B = and int %A, -1 ; noop
ret int %B
}
-bool "test3"(bool %A) {
+bool %test3(bool %A) {
%B = and bool %A, false ; always = false
ret bool %B
}
-bool "test4"(bool %A) {
+bool %test4(bool %A) {
%B = and bool %A, true ; noop
ret bool %B
}
-int "test5"(int %A) {
+int %test5(int %A) {
%B = and int %A, %A
ret int %B
}
-bool "test6"(bool %A) {
+bool %test6(bool %A) {
%B = and bool %A, %A
ret bool %B
}
More information about the llvm-commits
mailing list