summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCAsmStreamer.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-17 02:13:02 +0000
committerEric Christopher <echristo@apple.com>2010-05-17 02:13:02 +0000
commit68b1bbe66ab2ffb2dceb10af943ab1fe001fb537 (patch)
treeedbb4f28feb7319b07920f30b1f0b8c7f7e693c0 /llvm/lib/MC/MCAsmStreamer.cpp
parent8044c989d1f9199598ec1b6fb1ba7d99c6b2ca2a (diff)
downloadbcm5719-llvm-68b1bbe66ab2ffb2dceb10af943ab1fe001fb537.tar.gz
bcm5719-llvm-68b1bbe66ab2ffb2dceb10af943ab1fe001fb537.zip
Assume that we'll handle mangling the symbols earlier and just put the
symbol to the file as we have it. Simplifies out tbss handling. llvm-svn: 103928
Diffstat (limited to 'llvm/lib/MC/MCAsmStreamer.cpp')
-rw-r--r--llvm/lib/MC/MCAsmStreamer.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/lib/MC/MCAsmStreamer.cpp b/llvm/lib/MC/MCAsmStreamer.cpp
index 62735ad3f3a..4f7699ca99d 100644
--- a/llvm/lib/MC/MCAsmStreamer.cpp
+++ b/llvm/lib/MC/MCAsmStreamer.cpp
@@ -363,14 +363,13 @@ void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
EmitEOL();
}
-// .tbss sym$tlv$init, size, align
+// .tbss sym, size, align
+// This depends that the symbol has already been mangled from the original,
+// e.g. _a.
void MCAsmStreamer::EmitTBSSSymbol(MCSymbol *Symbol, uint64_t Size,
unsigned ByteAlignment) {
assert(Symbol != NULL && "Symbol shouldn't be NULL!");
- OS << ".tbss ";
-
- // This is a mach-o specific directive and the name requires some mangling.
- OS << *Symbol << "$tlv$init, " << Size;
+ OS << ".tbss " << *Symbol << ", " << Size;
// Output align if we have it.
if (ByteAlignment != 0) OS << ", " << Log2_32(ByteAlignment);
OpenPOWER on IntegriCloud