From bdde99bd426f630be526a71ba8f89cf1fe301e99 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 2 Aug 2009 06:51:58 +0000 Subject: [PATCH] I need Triple information, 10.6 shouldn't set this, it bloats object files. llvm-svn: 77887 --- llvm/lib/Target/DarwinTargetAsmInfo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/lib/Target/DarwinTargetAsmInfo.cpp b/llvm/lib/Target/DarwinTargetAsmInfo.cpp index ff1f3908a0f0..041dfa9ece41 100644 --- a/llvm/lib/Target/DarwinTargetAsmInfo.cpp +++ b/llvm/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";