diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-12-22 21:51:29 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-12-22 21:51:29 +0000 |
commit | a6cd2d821a2528d30a3936b445551c59876b96ea (patch) | |
tree | aee5987e03b0dcffea9b3125a85b47de50fb3e70 /llvm/lib/MC/MCAsmInfoDarwin.cpp | |
parent | 4037302a8bd5e5e8807c55bb942e5b31ffbc5351 (diff) | |
download | bcm5719-llvm-a6cd2d821a2528d30a3936b445551c59876b96ea.tar.gz bcm5719-llvm-a6cd2d821a2528d30a3936b445551c59876b96ea.zip |
Rename NeedsSetToChangeDiffSize to HasAggressiveSymbolFolding which is a much
better name and matches what is used in the MachO writer.
llvm-svn: 122443
Diffstat (limited to 'llvm/lib/MC/MCAsmInfoDarwin.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfoDarwin.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfoDarwin.cpp b/llvm/lib/MC/MCAsmInfoDarwin.cpp index a382741b5a2..13776f04437 100644 --- a/llvm/lib/MC/MCAsmInfoDarwin.cpp +++ b/llvm/lib/MC/MCAsmInfoDarwin.cpp @@ -41,7 +41,9 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() { // FIXME: Darwin 10 and newer don't need this. LinkerRequiresNonEmptyDwarfLines = true; - NeedsSetToChangeDiffSize = true; + // FIXME: Change this once MC is the system assembler. + HasAggressiveSymbolFolding = false; + HiddenVisibilityAttr = MCSA_PrivateExtern; // Doesn't support protected visibility. ProtectedVisibilityAttr = MCSA_Global; |