[llvm-commits] [llvm] r77887 - /llvm/trunk/lib/Target/DarwinTargetAsmInfo.cpp

Chris Lattner sabre at nondot.org
Sat Aug 1 23:51:58 PDT 2009


Author: lattner
Date: Sun Aug  2 01:51:58 2009
New Revision: 77887

URL: http://llvm.org/viewvc/llvm-project?rev=77887&view=rev
Log:
I need Triple information, 10.6 shouldn't set this, it bloats 
object files.

Modified:
    llvm/trunk/lib/Target/DarwinTargetAsmInfo.cpp

Modified: llvm/trunk/lib/Target/DarwinTargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/DarwinTargetAsmInfo.cpp?rev=77887&r1=77886&r2=77887&view=diff

==============================================================================
--- llvm/trunk/lib/Target/DarwinTargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/DarwinTargetAsmInfo.cpp Sun Aug  2 01:51:58 2009
@@ -37,8 +37,9 @@
   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";





More information about the llvm-commits mailing list