[llvm-branch-commits] [llvm-branch] r104343 - /llvm/branches/Apple/whitney/include/llvm/MC/MCAsmInfo.h
Daniel Dunbar
daniel at zuster.org
Fri May 21 12:06:05 PDT 2010
Author: ddunbar
Date: Fri May 21 14:06:05 2010
New Revision: 104343
URL: http://llvm.org/viewvc/llvm-project?rev=104343&view=rev
Log:
Fix build by actually declaring the variable.
Modified:
llvm/branches/Apple/whitney/include/llvm/MC/MCAsmInfo.h
Modified: llvm/branches/Apple/whitney/include/llvm/MC/MCAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/whitney/include/llvm/MC/MCAsmInfo.h?rev=104343&r1=104342&r2=104343&view=diff
==============================================================================
--- llvm/branches/Apple/whitney/include/llvm/MC/MCAsmInfo.h (original)
+++ llvm/branches/Apple/whitney/include/llvm/MC/MCAsmInfo.h Fri May 21 14:06:05 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-branch-commits
mailing list