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

Reid Spencer reid at x10sys.com
Sun Apr 1 20:25:04 PDT 2007



Changes in directory llvm/test/Transforms/InstCombine:

bitcount.ll updated: 1.1 -> 1.2
---
Log message:

Fix illegal assembly syntax.


---
Diffs of the changes:  (+4 -4)

 bitcount.ll |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/test/Transforms/InstCombine/bitcount.ll
diff -u llvm/test/Transforms/InstCombine/bitcount.ll:1.1 llvm/test/Transforms/InstCombine/bitcount.ll:1.2
--- llvm/test/Transforms/InstCombine/bitcount.ll:1.1	Sun Apr  1 20:45:31 2007
+++ llvm/test/Transforms/InstCombine/bitcount.ll	Sun Apr  1 22:24:47 2007
@@ -6,10 +6,10 @@
 declare i32 @llvm.cttz.i32(i32 %val) 
 declare i32 @llvm.ctlz.i33(i33 %val) 
 
-define i32 %test(i32 %A) {
-  %c1 = i32 call @llvm.ctpop(i31 12415124)
-  %c2 = i32 call @llvm.cttz(i32 87359874)
-  %c3 = i32 call @llvm.ctlz(i33 87359874)
+define i32 @test(i32 %A) {
+  %c1 = call i32 @llvm.ctpop.i31(i31 12415124)
+  %c2 = call i32 @llvm.cttz.i32(i32 87359874)
+  %c3 = call i32 @llvm.ctlz.i33(i33 87359874)
   %r1 = add i32 %c1, %c2
   %r2 = add i32 %r1, %c3
   ret i32 %r2






More information about the llvm-commits mailing list