aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCAsmStreamer.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-18 21:16:04 +0000
committerEric Christopher <echristo@apple.com>2010-05-18 21:16:04 +0000
commit8214ee8973af69041bde92bc56b7b9e262932ec2 (patch)
tree91a17f787461c04a71b94a9d340bb31f7f98a55d /lib/MC/MCAsmStreamer.cpp
parent64f3a9433186f879b5ab6db10ab1c630cf210be6 (diff)
downloadexternal_llvm-8214ee8973af69041bde92bc56b7b9e262932ec2.zip
external_llvm-8214ee8973af69041bde92bc56b7b9e262932ec2.tar.gz
external_llvm-8214ee8973af69041bde92bc56b7b9e262932ec2.tar.bz2
Make EmitTBSSSymbol take a section argument so that we can find it later.
Fix up callers and users. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104057 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAsmStreamer.cpp')
-rw-r--r--lib/MC/MCAsmStreamer.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index 4f7699c..f9182c5 100644
--- a/lib/MC/MCAsmStreamer.cpp
+++ b/lib/MC/MCAsmStreamer.cpp
@@ -126,8 +126,8 @@ public:
virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
unsigned Size = 0, unsigned ByteAlignment = 0);
- virtual void EmitTBSSSymbol (MCSymbol *Symbol, uint64_t Size,
- unsigned ByteAlignment = 0);
+ virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
+ uint64_t Size, unsigned ByteAlignment = 0);
virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
@@ -366,13 +366,16 @@ void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
// .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) {
+void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
+ uint64_t Size, unsigned ByteAlignment) {
assert(Symbol != NULL && "Symbol shouldn't be NULL!");
+ // Instead of using the Section we'll just use the shortcut.
+ // This is a mach-o specific directive and section.
OS << ".tbss " << *Symbol << ", " << Size;
- // Output align if we have it.
- if (ByteAlignment != 0) OS << ", " << Log2_32(ByteAlignment);
+ // Output align if we have it. We default to 1 so don't bother printing
+ // that.
+ if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
EmitEOL();
}