[llvm-commits] [llvm] r163554 - /llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll

NAKAMURA Takumi geek4civic at gmail.com
Mon Sep 10 15:04:55 PDT 2012


Author: chapuni
Date: Mon Sep 10 17:04:54 2012
New Revision: 163554

URL: http://llvm.org/viewvc/llvm-project?rev=163554&view=rev
Log:
test/CodeGen/X86/ms-inline-asm.ll: Relax for non-darwin x86 targets. '##InlineAsm' could not be seen in other hosts.

Modified:
    llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll

Modified: llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll?rev=163554&r1=163553&r2=163554&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll (original)
+++ llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll Mon Sep 10 17:04:54 2012
@@ -5,10 +5,10 @@
   %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}}
 }





More information about the llvm-commits mailing list