aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/DarwinTargetAsmInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-02 06:51:58 +0000
committerChris Lattner <sabre@nondot.org>2009-08-02 06:51:58 +0000
commit21e1e81aa657adab59dde3625b60866365d21788 (patch)
treed860c4f39860d6a2d3a279d65cd9261fb20e6834 /lib/Target/DarwinTargetAsmInfo.cpp
parent24def37c85cad01845e5fb2efc87e4d5471a2a6a (diff)
downloadexternal_llvm-21e1e81aa657adab59dde3625b60866365d21788.zip
external_llvm-21e1e81aa657adab59dde3625b60866365d21788.tar.gz
external_llvm-21e1e81aa657adab59dde3625b60866365d21788.tar.bz2
I need Triple information, 10.6 shouldn't set this, it bloats
object files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77887 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/DarwinTargetAsmInfo.cpp')
-rw-r--r--lib/Target/DarwinTargetAsmInfo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/DarwinTargetAsmInfo.cpp b/lib/Target/DarwinTargetAsmInfo.cpp
index ff1f390..041dfa9 100644
--- a/lib/Target/DarwinTargetAsmInfo.cpp
+++ b/lib/Target/DarwinTargetAsmInfo.cpp
@@ -37,8 +37,9 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo() {
HiddenDirective = "\t.private_extern ";
// _foo.eh symbols are currently always exported so that the linker knows
- // about them. This may not strictly be necessary on 10.6 and later, but it
+ // about them. This is not necessary on 10.6 and later, but it
// doesn't hurt anything.
+ // FIXME: I need to get this from Triple.
Is_EHSymbolPrivate = false;
DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";