summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll')
-rw-r--r--test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll b/test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll
index d044fd7153..760fe3650e 100644
--- a/test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll
+++ b/test/CodeGen/X86/2006-07-10-InlineAsmAConstraint.ll
@@ -1,7 +1,8 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86
+; RUN: llvm-as < %s | llc -march=x86
; PR825
-long %test() {
- %tmp.i5 = call long asm sideeffect "rdtsc", "=A,~{dirflag},~{fpsr},~{flags}"( ) ; <long> [#uses=0]
- ret long %tmp.i5
+define i64 @test() {
+ %tmp.i5 = call i64 asm sideeffect "rdtsc", "=A,~{dirflag},~{fpsr},~{flags}"( ) ; <i64> [#uses=1]
+ ret i64 %tmp.i5
}
+