[llvm-commits] [llvm] r104381 - /llvm/trunk/lib/MC/MCSectionMachO.cpp
Eric Christopher
echristo at apple.com
Fri May 21 14:08:52 PDT 2010
Author: echristo
Date: Fri May 21 16:08:52 2010
New Revision: 104381
URL: http://llvm.org/viewvc/llvm-project?rev=104381&view=rev
Log:
Fix section attribute name.
Modified:
llvm/trunk/lib/MC/MCSectionMachO.cpp
Modified: llvm/trunk/lib/MC/MCSectionMachO.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCSectionMachO.cpp?rev=104381&r1=104380&r2=104381&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCSectionMachO.cpp (original)
+++ llvm/trunk/lib/MC/MCSectionMachO.cpp Fri May 21 16:08:52 2010
@@ -36,7 +36,7 @@
{ 0, /*FIXME??*/ "S_DTRACE_DOF" }, // 0x0F
{ 0, /*FIXME??*/ "S_LAZY_DYLIB_SYMBOL_POINTERS" }, // 0x10
{ "thread_local_regular", "S_THREAD_LOCAL_REGULAR" }, // 0x11
- { "thread_bss", "S_THREAD_LOCAL_ZEROFILL" }, // 0x12
+ { "thread_local_zerofill", "S_THREAD_LOCAL_ZEROFILL" }, // 0x12
{ "thread_local_variables", "S_THREAD_LOCAL_VARIABLES" }, // 0x13
{ "thread_local_variable_pointers",
"S_THREAD_LOCAL_VARIABLE_POINTERS" }, // 0x14
More information about the llvm-commits
mailing list