Fix indentation.

llvm-svn: 199118
This commit is contained in:
Joerg Sonnenberger 2014-01-13 15:50:36 +00:00
parent 36b376914d
commit 808df6725f
1 changed files with 11 additions and 11 deletions

View File

@ -738,17 +738,17 @@ void MCAssembler::writeSectionData(const MCSectionData *SD,
uint64_t MCAssembler::handleFixup(const MCAsmLayout &Layout,
MCFragment &F,
const MCFixup &Fixup) {
// Evaluate the fixup.
MCValue Target;
uint64_t FixedValue;
if (!evaluateFixup(Layout, Fixup, &F, Target, FixedValue)) {
// The fixup was unresolved, we need a relocation. Inform the object
// writer of the relocation, and give it an opportunity to adjust the
// fixup value if need be.
getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, FixedValue);
}
return FixedValue;
}
// Evaluate the fixup.
MCValue Target;
uint64_t FixedValue;
if (!evaluateFixup(Layout, Fixup, &F, Target, FixedValue)) {
// The fixup was unresolved, we need a relocation. Inform the object
// writer of the relocation, and give it an opportunity to adjust the
// fixup value if need be.
getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, FixedValue);
}
return FixedValue;
}
void MCAssembler::Finish() {
DEBUG_WITH_TYPE("mc-dump", {