aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/neg1.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Alpha/neg1.ll')
-rw-r--r--test/CodeGen/Alpha/neg1.ll8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/CodeGen/Alpha/neg1.ll b/test/CodeGen/Alpha/neg1.ll
index 037e3a2..ddaed4a 100644
--- a/test/CodeGen/Alpha/neg1.ll
+++ b/test/CodeGen/Alpha/neg1.ll
@@ -1,9 +1,7 @@
; Make sure this testcase codegens to the lda -1 instruction
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep {\\-1}
+; RUN: llvm-as < %s | llc -march=alpha | grep {\\-1}
-implementation ; Functions:
-
-long %bar() {
+define i64 @bar() {
entry:
- ret long -1
+ ret i64 -1
}