[llvm-commits] [llvm] r104201 - /llvm/trunk/include/llvm/MC/MCAsmInfo.h

Eric Christopher echristo at apple.com
Wed May 19 17:59:30 PDT 2010


Author: echristo
Date: Wed May 19 19:59:30 2010
New Revision: 104201

URL: http://llvm.org/viewvc/llvm-project?rev=104201&view=rev
Log:
Fix build by actually declaring the variable.

Modified:
    llvm/trunk/include/llvm/MC/MCAsmInfo.h

Modified: llvm/trunk/include/llvm/MC/MCAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCAsmInfo.h?rev=104201&r1=104200&r2=104201&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCAsmInfo.h (original)
+++ llvm/trunk/include/llvm/MC/MCAsmInfo.h Wed May 19 19:59:30 2010
@@ -41,6 +41,10 @@
     /// the macho-specific .zerofill directive for emitting BSS Symbols.
     bool HasMachoZeroFillDirective;               // Default is false.
     
+    /// HasMachoTBSSDirective - True if this is a MachO target that supports
+    /// the macho-specific .tbss directive for emitting thread local BSS Symbols
+    bool HasMachoTBSSDirective;                 // Default is false.
+    
     /// HasStaticCtorDtorReferenceInStaticMode - True if the compiler should
     /// emit a ".reference .constructors_used" or ".reference .destructors_used"
     /// directive after the a static ctor/dtor list.  This directive is only





More information about the llvm-commits mailing list