summaryrefslogtreecommitdiff
path: root/lib/MC/MCELFStreamer.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-11-15 16:46:22 +0000
committerJim Grosbach <grosbach@apple.com>2011-11-15 16:46:22 +0000
commit946227d64afcc8cb3f4db94b6ee0cdb1aa55fa31 (patch)
tree191e5bbef6bd9f408f4fe79b9134143920129ce3 /lib/MC/MCELFStreamer.cpp
parenta7b0cb759433c715065440ee2a963a04db7f2b0b (diff)
downloadllvm-946227d64afcc8cb3f4db94b6ee0cdb1aa55fa31.tar.gz
llvm-946227d64afcc8cb3f4db94b6ee0cdb1aa55fa31.tar.bz2
llvm-946227d64afcc8cb3f4db94b6ee0cdb1aa55fa31.tar.xz
Tidy up. 80 columns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCELFStreamer.cpp')
-rw-r--r--lib/MC/MCELFStreamer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/MC/MCELFStreamer.cpp b/lib/MC/MCELFStreamer.cpp
index 0b366da44c..0ea3c64a28 100644
--- a/lib/MC/MCELFStreamer.cpp
+++ b/lib/MC/MCELFStreamer.cpp
@@ -205,10 +205,10 @@ void MCELFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
if (MCELF::GetBinding(SD) == ELF_STB_Local) {
const MCSection *Section = getAssembler().getContext().getELFSection(".bss",
- ELF::SHT_NOBITS,
- ELF::SHF_WRITE |
- ELF::SHF_ALLOC,
- SectionKind::getBSS());
+ ELF::SHT_NOBITS,
+ ELF::SHF_WRITE |
+ ELF::SHF_ALLOC,
+ SectionKind::getBSS());
Symbol->setSection(*Section);
struct LocalCommon L = {&SD, Size, ByteAlignment};