[llvm-commits] CVS: llvm/test/Regression/CBackend/2003-11-21-ConstantShiftExpr.ll

Brian Gaeke gaeke at cs.uiuc.edu
Fri Nov 21 23:03:01 PST 2003


Changes in directory llvm/test/Regression/CBackend:

2003-11-21-ConstantShiftExpr.ll updated: 1.1 -> 1.2

---
Log message:

Strengthen test case.


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

Index: llvm/test/Regression/CBackend/2003-11-21-ConstantShiftExpr.ll
diff -u llvm/test/Regression/CBackend/2003-11-21-ConstantShiftExpr.ll:1.1 llvm/test/Regression/CBackend/2003-11-21-ConstantShiftExpr.ll:1.2
--- llvm/test/Regression/CBackend/2003-11-21-ConstantShiftExpr.ll:1.1	Fri Nov 21 22:58:25 2003
+++ llvm/test/Regression/CBackend/2003-11-21-ConstantShiftExpr.ll	Fri Nov 21 23:01:57 2003
@@ -1,6 +1,10 @@
 %y = weak global sbyte 0
 implementation
-uint %testcase() {
+uint %testcaseshr() {
 entry:
 	ret uint shr (uint cast (sbyte* %y to uint), ubyte 4)
+}
+uint %testcaseshl() {
+entry:
+	ret uint shl (uint cast (sbyte* %y to uint), ubyte 4)
 }





More information about the llvm-commits mailing list