test/CodeGen/X86/ms-inline-asm.ll: Relax for non-darwin x86 targets. '##InlineAsm' could not be seen in other hosts.

llvm-svn: 163554
This commit is contained in:
NAKAMURA Takumi 2012-09-10 22:04:54 +00:00
parent 54b102985d
commit 8c72306cdb
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@ entry:
%0 = tail call i32 asm sideeffect inteldialect "mov eax, $1\0Amov $0, eax", "=r,r,~{eax},~{dirflag},~{fpsr},~{flags}"(i32 1) nounwind
ret i32 %0
; CHECK: t1
; CHECK: ## InlineAsm Start
; CHECK: {{## InlineAsm Start|#APP}}
; CHECK: .intel_syntax
; CHECK: mov eax, ecx
; CHECK: mov ecx, eax
; CHECK: .att_syntax
; CHECK: ## InlineAsm End
; CHECK: {{## InlineAsm End|#NO_APP}}
}