aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-09-10 22:04:54 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-09-10 22:04:54 +0000
commit985dcfc351df881eecee1f651175d975ed359311 (patch)
treea59a4f14e831d8fb81e17a8778c0915ad049f066
parent24f5fddbdff3d54d822555ae792a7f3bb22e342f (diff)
test/CodeGen/X86/ms-inline-asm.ll: Relax for non-darwin x86 targets. '##InlineAsm' could not be seen in other hosts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163554 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/ms-inline-asm.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/ms-inline-asm.ll b/test/CodeGen/X86/ms-inline-asm.ll
index 9bebcbde43..014132ba1f 100644
--- a/test/CodeGen/X86/ms-inline-asm.ll
+++ b/test/CodeGen/X86/ms-inline-asm.ll
@@ -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}}
}