diff options
| author | Eric Christopher <echristo@apple.com> | 2010-05-17 21:02:07 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-05-17 21:02:07 +0000 |
| commit | d372b185ac15ab79a8c9d92b93df89a09b1cf386 (patch) | |
| tree | 6304bcbf4e1fe201f9c4977abe389a9d3953f583 /lib/MC/MCSectionMachO.cpp | |
| parent | 6dbffd4b44cbd1b38d1a4dc0b290c958e3e1bbe5 (diff) | |
| download | external_llvm-d372b185ac15ab79a8c9d92b93df89a09b1cf386.zip external_llvm-d372b185ac15ab79a8c9d92b93df89a09b1cf386.tar.gz external_llvm-d372b185ac15ab79a8c9d92b93df89a09b1cf386.tar.bz2 | |
Add some section and constant support for darwin TLS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCSectionMachO.cpp')
| -rw-r--r-- | lib/MC/MCSectionMachO.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/MC/MCSectionMachO.cpp b/lib/MC/MCSectionMachO.cpp index 3a18cee..7a519e8 100644 --- a/lib/MC/MCSectionMachO.cpp +++ b/lib/MC/MCSectionMachO.cpp @@ -34,7 +34,14 @@ static const struct { { "interposing", "S_INTERPOSING" }, // 0x0D { "16byte_literals", "S_16BYTE_LITERALS" }, // 0x0E { 0, /*FIXME??*/ "S_DTRACE_DOF" }, // 0x0F - { 0, /*FIXME??*/ "S_LAZY_DYLIB_SYMBOL_POINTERS" } // 0x10 + { 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_variables", "S_THREAD_LOCAL_VARIABLES" }, // 0x13 + { "thread_local_variable_pointers", + "S_THREAD_LOCAL_VARIABLE_POINTERS" }, // 0x14 + { "thread_local_init_function_pointers", + "S_THREAD_LOCAL_INIT_FUNCTION_POINTERS"}, // 0x15 }; |
