diff options
author | Tim Northover <tnorthover@apple.com> | 2014-03-29 07:33:24 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-03-29 07:33:24 +0000 |
commit | 5627670e8429c811032971211cfe3da89f0221b4 (patch) | |
tree | 19aaf7c47f8d3d863510b174e5c977efabbec8b1 | |
parent | d5dd36a02030e1827f8d13adcc2d22736becb11f (diff) | |
download | bcm5719-llvm-5627670e8429c811032971211cfe3da89f0221b4.tar.gz bcm5719-llvm-5627670e8429c811032971211cfe3da89f0221b4.zip |
MachO: actually set linker-private prefix at MC level.
This was accidentally omitted from r205081.
llvm-svn: 205083
-rw-r--r-- | llvm/lib/MC/MCAsmInfoDarwin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCAsmInfoDarwin.cpp b/llvm/lib/MC/MCAsmInfoDarwin.cpp index e907b751029..eaf28dd4cf7 100644 --- a/llvm/lib/MC/MCAsmInfoDarwin.cpp +++ b/llvm/lib/MC/MCAsmInfoDarwin.cpp @@ -23,6 +23,7 @@ void MCAsmInfoDarwin::anchor() { } MCAsmInfoDarwin::MCAsmInfoDarwin() { // Common settings for all Darwin targets. // Syntax: + LinkerPrivateGlobalPrefix = "l"; HasSingleParameterDotFile = false; HasSubsectionsViaSymbols = true; |