If dbg_declare() or dbg_value() is not lowered by isel then emit DEBUG message instea...
[oota-llvm.git] / test / CodeGen / Alpha / srl_and.ll
index 49074cc9168906a5dd4434af4dff881e2dacb968..3042ef3d0237ec054314c0a025128f797527aa11 100644 (file)
@@ -1,10 +1,10 @@
 ; Make sure this testcase codegens to the zapnot instruction
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'zapnot'
+; RUN: llc < %s -march=alpha | grep zapnot
 
-ulong %foo(ulong %y) {
+define i64 @foo(i64 %y) {
 entry:
-        %tmp = shr ulong %y, ubyte 3            ; <ulong> [#uses=1]
-        %tmp2 = and ulong %tmp, 8191            ; <ulong> [#uses=1]
-        ret ulong %tmp2
+        %tmp = lshr i64 %y, 3           ; <i64> [#uses=1]
+        %tmp2 = and i64 %tmp, 8191              ; <i64> [#uses=1]
+        ret i64 %tmp2
 }