summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-20 00:49:07 +0000
committerEric Christopher <echristo@apple.com>2010-05-20 00:49:07 +0000
commitc1a887d76d95100e7e05aa76e077710bc4e0b1cf (patch)
tree16e95fc9ae7c59a7e3d084d60a1bd538eae6e783 /lib/CodeGen/AsmPrinter/AsmPrinter.cpp
parentff9244a1f15c500031207a8b725530536c60d831 (diff)
downloadexternal_llvm-c1a887d76d95100e7e05aa76e077710bc4e0b1cf.zip
external_llvm-c1a887d76d95100e7e05aa76e077710bc4e0b1cf.tar.gz
external_llvm-c1a887d76d95100e7e05aa76e077710bc4e0b1cf.tar.bz2
Partial code for emitting thread local bss data.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinter.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index bd7d0e5..50a5075 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -310,6 +310,13 @@ void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
return;
}
+
+ // Handle the tbss directive on darwin which is a thread local bss directive
+ // like zerofill.
+ if (GVKind.isThreadBSS() && MAI->hasMachoTBSSDirective()) {
+ OutStreamer.EmitTBSSSymbol(TheSection, GVSym, Size, 1 << AlignLog);
+ return;
+ }
OutStreamer.SwitchSection(TheSection);