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

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 10 12:22:01 PST 2003


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

shift.ll updated: 1.5 -> 1.6

---
Log message:

Modernize testcase


---
Diffs of the changes:

Index: llvm/test/Regression/Transforms/InstCombine/shift.ll
diff -u llvm/test/Regression/Transforms/InstCombine/shift.ll:1.5 llvm/test/Regression/Transforms/InstCombine/shift.ll:1.6
--- llvm/test/Regression/Transforms/InstCombine/shift.ll:1.5	Tue Oct  8 11:10:35 2002
+++ llvm/test/Regression/Transforms/InstCombine/shift.ll	Mon Mar 10 12:20:53 2003
@@ -8,27 +8,27 @@
 
 implementation
 
-int "test1"(int %A) {
+int %test1(int %A) {
 	%B = shl int %A, ubyte 0
 	ret int %B
 }
 
-int "test2"(ubyte %A) {
+int %test2(ubyte %A) {
 	%B = shl int 0, ubyte %A
 	ret int %B
 }
 
-int "test3"(int %A) {
+int %test3(int %A) {
 	%B = shr int %A, ubyte 0
 	ret int %B
 }
 
-int "test4"(ubyte %A) {
+int %test4(ubyte %A) {
 	%B = shr int 0, ubyte %A
 	ret int %B
 }
 
-uint "test5"(uint %A) {
+uint %test5(uint %A) {
 	%B = shr uint %A, ubyte 32  ;; shift all bits out
 	ret uint %B
 }





More information about the llvm-commits mailing list