mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
08c26613e1
If a linker directive is already quoted, don't try to quote it again, otherwise it creates a mess. This pops up in places like: #pragma comment(linker,"\"/foo bar'\"") Differential Revision: http://reviews.llvm.org/D6792 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224998 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
716 B
LLVM
Executable File
19 lines
716 B
LLVM
Executable File
; RUN: llc -O0 -mtriple=i386-pc-win32 -filetype=asm -o - %s | FileCheck %s
|
|
|
|
!0 = !{i32 6, !"Linker Options", !{!{!"/DEFAULTLIB:msvcrt.lib"}, !{!"/DEFAULTLIB:msvcrt.lib", !"/DEFAULTLIB:secur32.lib"}, !{!"/DEFAULTLIB:C:\5Cpath to\5Casan_rt.lib"}, !{!"/with spaces"}, !{!"\22/quoted spaces\22"}}}
|
|
|
|
!llvm.module.flags = !{ !0 }
|
|
|
|
define dllexport void @foo() {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: .section .drectve,"yn"
|
|
; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
|
|
; CHECK: .ascii " /DEFAULTLIB:msvcrt.lib"
|
|
; CHECK: .ascii " /DEFAULTLIB:secur32.lib"
|
|
; CHECK: .ascii " \"/DEFAULTLIB:C:\\path to\\asan_rt.lib\""
|
|
; CHECK: .ascii " \"/with spaces\""
|
|
; CHECK: .ascii " \"/quoted spaces\""
|
|
; CHECK: .ascii " /EXPORT:_foo"
|