aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/ctpop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Alpha/ctpop.ll')
-rw-r--r--test/CodeGen/Alpha/ctpop.ll21
1 files changed, 10 insertions, 11 deletions
diff --git a/test/CodeGen/Alpha/ctpop.ll b/test/CodeGen/Alpha/ctpop.ll
index 388c121..654cd04 100644
--- a/test/CodeGen/Alpha/ctpop.ll
+++ b/test/CodeGen/Alpha/ctpop.ll
@@ -1,20 +1,19 @@
; Make sure this testcase codegens to the ctpop instruction
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev67 | grep -i ctpop
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=+CIX | \
+; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev67 | grep -i ctpop
+; RUN: llvm-as < %s | llc -march=alpha -mattr=+CIX | \
; RUN: grep -i ctpop
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev6 | \
+; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev6 | \
; RUN: not grep -i ctpop
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev56 | \
+; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev56 | \
; RUN: not grep -i ctpop
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=-CIX | \
+; RUN: llvm-as < %s | llc -march=alpha -mattr=-CIX | \
; RUN: not grep -i ctpop
-declare long %llvm.ctpop.i64(long)
+declare i64 @llvm.ctpop.i64(i64)
-implementation ; Functions:
-
-long %bar(long %x) {
+define i64 @bar(i64 %x) {
entry:
- %tmp.1 = call long %llvm.ctpop.i64( long %x )
- ret long %tmp.1
+ %tmp.1 = call i64 @llvm.ctpop.i64( i64 %x ) ; <i64> [#uses=1]
+ ret i64 %tmp.1
}
+