diff options
author | Eric Christopher <echristo@apple.com> | 2010-05-17 22:53:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-05-17 22:53:55 +0000 |
commit | ba2a5e8587e7c9f72ddef756ed0873abe758acb5 (patch) | |
tree | 3d6334e99b927d2cf415aef36e533c1337018bcb /lib/CodeGen/TargetLoweringObjectFileImpl.cpp | |
parent | e17aa701d44f2696638086730c6c7a713f055bef (diff) | |
download | external_llvm-ba2a5e8587e7c9f72ddef756ed0873abe758acb5.zip external_llvm-ba2a5e8587e7c9f72ddef756ed0873abe758acb5.tar.gz external_llvm-ba2a5e8587e7c9f72ddef756ed0873abe758acb5.tar.bz2 |
More data/parsing support for tls directives. Add a few more testcases
and cleanup comments as well.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TargetLoweringObjectFileImpl.cpp')
-rw-r--r-- | lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/lib/CodeGen/TargetLoweringObjectFileImpl.cpp index 5bb33c2..8376819 100644 --- a/lib/CodeGen/TargetLoweringObjectFileImpl.cpp +++ b/lib/CodeGen/TargetLoweringObjectFileImpl.cpp @@ -475,6 +475,12 @@ void TargetLoweringObjectFileMachO::Initialize(MCContext &Ctx, = getContext().getMachOSection("__DATA", "__thread_vars", MCSectionMachO::S_THREAD_LOCAL_VARIABLES, SectionKind::getDataRel()); + + TLSThreadInitSection + = getContext().getMachOSection("__DATA", "__thread_init", + MCSectionMachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS, + SectionKind::getDataRel()); + CStringSection // .cstring = getContext().getMachOSection("__TEXT", "__cstring", MCSectionMachO::S_CSTRING_LITERALS, |