diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-10 23:02:48 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-10 23:02:48 +0000 |
commit | 0e4776ce61092e34ac2340c60534cbed29aba87b (patch) | |
tree | 9dcc20f4f421d2fea4ff8f48900530fd5ef1b31b /test/CodeGen | |
parent | 1b8eeb327e78f04b1c57b537a3a9534c91a9355b (diff) | |
download | external_llvm-0e4776ce61092e34ac2340c60534cbed29aba87b.zip external_llvm-0e4776ce61092e34ac2340c60534cbed29aba87b.tar.gz external_llvm-0e4776ce61092e34ac2340c60534cbed29aba87b.tar.bz2 |
llvm/test/CodeGen/X86/ms-inline-asm.ll: Fixup; Globals doesn't have leading underscore in symbol on linux.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/ms-inline-asm.ll | 4 |
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 9bca1ac..68e332e 100644 --- a/test/CodeGen/X86/ms-inline-asm.ll +++ b/test/CodeGen/X86/ms-inline-asm.ll @@ -71,8 +71,8 @@ define void @t19() nounwind { 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 |