projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
338ea09
)
Fix illegal assembly syntax.
author
Reid Spencer
<rspencer@reidspencer.com>
Mon, 2 Apr 2007 03:24:47 +0000
(
03:24
+0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Mon, 2 Apr 2007 03:24:47 +0000
(
03:24
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35581
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/Transforms/InstCombine/bitcount.ll
patch
|
blob
|
history
diff --git
a/test/Transforms/InstCombine/bitcount.ll
b/test/Transforms/InstCombine/bitcount.ll
index bb85110563f40675897bd2cdbe1c5ad2852a6f65..fa05e3f7f1bdce9411b12a4baf06b4ad92e1298f 100644
(file)
--- a/
test/Transforms/InstCombine/bitcount.ll
+++ b/
test/Transforms/InstCombine/bitcount.ll
@@
-6,10
+6,10
@@
declare i32 @llvm.ctpop.i31(i31 %val)
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