summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-16 03:18:25 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-16 03:18:25 +0000
commita529f6f4436dd2baa5d855fe234f31bc0cf20db6 (patch)
treefd4954a58f13a10e559d3ade8c0831303937fd1d /test
parentf9dd33268d4d9e3bd4ad32c7b880aeffaa6b0ac8 (diff)
downloadllvm-a529f6f4436dd2baa5d855fe234f31bc0cf20db6.tar.gz
llvm-a529f6f4436dd2baa5d855fe234f31bc0cf20db6.tar.bz2
llvm-a529f6f4436dd2baa5d855fe234f31bc0cf20db6.tar.xz
For PR1336:
Rename the intrinsic so this can be upgraded properly. It still fails with an llc warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36109 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/Alpha/ctpop.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Alpha/ctpop.ll b/test/CodeGen/Alpha/ctpop.ll
index df9524c0bf..fa84cb706b 100644
--- a/test/CodeGen/Alpha/ctpop.ll
+++ b/test/CodeGen/Alpha/ctpop.ll
@@ -10,12 +10,12 @@
; RUN: not grep -i 'ctpop'
; XFAIL: *
-declare long %llvm.ctpop(long)
+declare long %llvm.ctpop.i64(long)
implementation ; Functions:
long %bar(long %x) {
entry:
- %tmp.1 = call long %llvm.ctpop( long %x )
+ %tmp.1 = call long %llvm.ctpop.i64( long %x )
ret long %tmp.1
}