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 /include/llvm/CodeGen/TargetLoweringObjectFileImpl.h | |
| 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 'include/llvm/CodeGen/TargetLoweringObjectFileImpl.h')
| -rw-r--r-- | include/llvm/CodeGen/TargetLoweringObjectFileImpl.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h index e106a41..3aaab88 100644 --- a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h +++ b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h @@ -84,19 +84,23 @@ public: class TargetLoweringObjectFileMachO : public TargetLoweringObjectFile { - /// TLSDataSection - Section directive for Thread Local data. + /// TLSDataSection - Section for thread local data. /// const MCSection *TLSDataSection; // Defaults to ".tdata". - /// TLSBSSSection - Section directive for Thread Local uninitialized data. + /// TLSBSSSection - Section for thread local uninitialized data. /// const MCSection *TLSBSSSection; // Defaults to ".tbss". - /// TLSTLVSection - Section directive for Thread Local structure infomation. + /// TLSTLVSection - Section for thread local structure infomation. /// Contains the source code name of the variable, visibility and a pointer /// to the initial value (.tdata or .tbss). const MCSection *TLSTLVSection; // Defaults to ".tlv". + /// TLSThreadInitSection - Section for thread local data initialization + /// functions. + const MCSection *TLSThreadInitSection; // Defaults to ".thread_init_func". + const MCSection *CStringSection; const MCSection *UStringSection; const MCSection *TextCoalSection; |
