[llvm-commits] [llvm] r172139 - /llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll
NAKAMURA Takumi
geek4civic at gmail.com
Thu Jan 10 15:02:49 PST 2013
Author: chapuni
Date: Thu Jan 10 17:02:48 2013
New Revision: 172139
URL: http://llvm.org/viewvc/llvm-project?rev=172139&view=rev
Log:
llvm/test/CodeGen/X86/ms-inline-asm.ll: Fixup; Globals doesn't have leading underscore in symbol on linux.
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=172139&r1=172138&r2=172139&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll (original)
+++ llvm/trunk/test/CodeGen/X86/ms-inline-asm.ll Thu Jan 10 17:02:48 2013
@@ -71,8 +71,8 @@
entry:
call void asm sideeffect inteldialect "call $0", "r,~{dirflag},~{fpsr},~{flags}"(void ()* @t19_helper) nounwind
ret void
-; CHECK: t19
-; CHECK: movl $_t19_helper, %eax
+; CHECK: t19:
+; CHECK: movl ${{_?}}t19_helper, %eax
; CHECK: {{## InlineAsm Start|#APP}}
; CHECK: .intel_syntax
; CHECK: call eax
More information about the llvm-commits
mailing list