diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-10-18 02:14:40 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-10-18 02:14:40 +0000 |
commit | 7ddcdc82a59e28f011fc6be6f47de948fe8f6abb (patch) | |
tree | febdfaf4b6126826fcef7b828fe212cfdde800c3 /llvm/test/CodeGen/X86/stdcall.ll | |
parent | b6c825a5cf92ca352826552d47e6d82c71eaa7f1 (diff) | |
download | bcm5719-llvm-7ddcdc82a59e28f011fc6be6f47de948fe8f6abb.tar.gz bcm5719-llvm-7ddcdc82a59e28f011fc6be6f47de948fe8f6abb.zip |
Revert "Re-commit r192758 - MC: quote tricky symbol names in asm output"
This caused the clang-native-mingw32-win7 buildbot to break.
The assembler was complaining about the following lines that were showing up
in the asm for CrashRecoveryContext.cpp:
movl $"__ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4", 4(%eax)
calll "_AddVectoredExceptionHandler@8"
.def "__ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4";
"__ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4":
calll "_RemoveVectoredExceptionHandler@4"
Reverting for now.
llvm-svn: 192940
Diffstat (limited to 'llvm/test/CodeGen/X86/stdcall.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/stdcall.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/stdcall.ll b/llvm/test/CodeGen/X86/stdcall.ll index 34f90c5ee38..73826ed0b29 100644 --- a/llvm/test/CodeGen/X86/stdcall.ll +++ b/llvm/test/CodeGen/X86/stdcall.ll @@ -5,7 +5,7 @@ define internal x86_stdcallcc void @MyFunc() nounwind { entry: -; CHECK: "_MyFunc@0": +; CHECK: MyFunc@0: ; CHECK: ret ret void } @@ -20,5 +20,5 @@ entry: @B = global %0 { void (...)* bitcast (void ()* @MyFunc to void (...)*) }, align 4 ; CHECK: _B: -; CHECK: .long "_MyFunc@0" +; CHECK: .long _MyFunc@0 |