[llvm-commits] CVS: llvm/test/Regression/Transforms/InstCombine/and.ll

Chris Lattner lattner at cs.uiuc.edu
Thu May 5 18:53:06 PDT 2005



Changes in directory llvm/test/Regression/Transforms/InstCombine:

and.ll updated: 1.26 -> 1.27
---
Log message:

new testcase for unneeded and


---
Diffs of the changes:  (+5 -0)

 and.ll |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/test/Regression/Transforms/InstCombine/and.ll
diff -u llvm/test/Regression/Transforms/InstCombine/and.ll:1.26 llvm/test/Regression/Transforms/InstCombine/and.ll:1.27
--- llvm/test/Regression/Transforms/InstCombine/and.ll:1.26	Sat Jan  1 10:13:19 2005
+++ llvm/test/Regression/Transforms/InstCombine/and.ll	Thu May  5 20:52:52 2005
@@ -192,3 +192,8 @@
         ret int %Z
 }
 
+int %test30(bool %X) {
+	%Y = cast bool %X to int
+	%Z = and int %Y, 1
+	ret int %Z
+}






More information about the llvm-commits mailing list