When the scheduler unfold a load folding instruction it move some of the predecessors...
[oota-llvm.git] / test / CodeGen / Alpha / not.ll
index 406f6242938330f86731d564c17323e99e7cba18..4f0a5c2946ef3df7cd233bf3046bb2b47e9cbcfc 100644 (file)
@@ -1,10 +1,8 @@
 ; Make sure this testcase codegens to the ornot instruction
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'eqv'
+; RUN: llc < %s -march=alpha | grep eqv
 
-implementation   ; Functions:
-
-long %bar(long %x) {
+define i64 @bar(i64 %x) {
 entry:
-       %tmp.1 = xor long %x, -1                ; <long> [#uses=1]
-       ret long %tmp.1
+        %tmp.1 = xor i64 %x, -1         ; <i64> [#uses=1]
+        ret i64 %tmp.1
 }