diff options
| author | Eric Christopher <echristo@apple.com> | 2010-05-21 21:08:52 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-05-21 21:08:52 +0000 |
| commit | 30b6f4abbb0c42ddf3fd2173f77358938d8cfb47 (patch) | |
| tree | 6cfee63fd14acdfa641cd3aea5654b8e528c04fa /lib/MC/MCSectionMachO.cpp | |
| parent | 9c38d5ce139e13148f4db86582463a313f53cdc0 (diff) | |
| download | external_llvm-30b6f4abbb0c42ddf3fd2173f77358938d8cfb47.zip external_llvm-30b6f4abbb0c42ddf3fd2173f77358938d8cfb47.tar.gz external_llvm-30b6f4abbb0c42ddf3fd2173f77358938d8cfb47.tar.bz2 | |
Fix section attribute name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCSectionMachO.cpp')
| -rw-r--r-- | lib/MC/MCSectionMachO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCSectionMachO.cpp b/lib/MC/MCSectionMachO.cpp index 4ad3a2f..ded3b20 100644 --- a/lib/MC/MCSectionMachO.cpp +++ b/lib/MC/MCSectionMachO.cpp @@ -36,7 +36,7 @@ static const struct { { 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 |
