aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/eqv.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Alpha/eqv.ll')
-rw-r--r--test/CodeGen/Alpha/eqv.ll13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/CodeGen/Alpha/eqv.ll b/test/CodeGen/Alpha/eqv.ll
index 76bbc92..2539d72 100644
--- a/test/CodeGen/Alpha/eqv.ll
+++ b/test/CodeGen/Alpha/eqv.ll
@@ -1,11 +1,10 @@
; Make sure this testcase codegens to the eqv instruction
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep eqv
+; RUN: llvm-as < %s | llc -march=alpha | grep eqv
-implementation ; Functions:
-
-long %bar(long %x, long %y) {
+define i64 @bar(i64 %x, i64 %y) {
entry:
- %tmp.1 = xor long %x, -1 ; <long> [#uses=1]
- %tmp.2 = xor long %y, %tmp.1
- ret long %tmp.2
+ %tmp.1 = xor i64 %x, -1 ; <i64> [#uses=1]
+ %tmp.2 = xor i64 %y, %tmp.1 ; <i64> [#uses=1]
+ ret i64 %tmp.2
}
+