summaryrefslogtreecommitdiff
path: root/lib/MC
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2012-09-18 23:05:18 +0000
committerJim Grosbach <grosbach@apple.com>2012-09-18 23:05:18 +0000
commitb5762bfd8cb8238ec34b0b422d074f65f35b8eab (patch)
treecc6ed7d2bf90dac8ba6471cdab2f1789419ebcb1 /lib/MC
parente75a98320e5d0dff0fc29d2aa39d4c70f70b9da8 (diff)
downloadllvm-b5762bfd8cb8238ec34b0b422d074f65f35b8eab.tar.gz
llvm-b5762bfd8cb8238ec34b0b422d074f65f35b8eab.tar.bz2
llvm-b5762bfd8cb8238ec34b0b422d074f65f35b8eab.tar.xz
Tidy up. Minor formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164182 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCAssembler.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp
index d2bf1ff0e4..726ec5aba5 100644
--- a/lib/MC/MCAssembler.cpp
+++ b/lib/MC/MCAssembler.cpp
@@ -199,8 +199,7 @@ MCAssembler::MCAssembler(MCContext &Context_, MCAsmBackend &Backend_,
MCCodeEmitter &Emitter_, MCObjectWriter &Writer_,
raw_ostream &OS_)
: Context(Context_), Backend(Backend_), Emitter(Emitter_), Writer(Writer_),
- OS(OS_), RelaxAll(false), NoExecStack(false), SubsectionsViaSymbols(false)
-{
+ OS(OS_), RelaxAll(false), NoExecStack(false), SubsectionsViaSymbols(false) {
}
MCAssembler::~MCAssembler() {
@@ -533,7 +532,7 @@ void MCAssembler::writeSectionData(const MCSectionData *SD,
}
uint64_t Start = getWriter().getStream().tell();
- (void) Start;
+ (void)Start;
for (MCSectionData::const_iterator it = SD->begin(),
ie = SD->end(); it != ie; ++it)