Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 286cc13

Browse files
committed
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199118 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 91e35c7 commit 286cc13

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

lib/MC/MCAssembler.cpp

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -738,17 +738,17 @@ void MCAssembler::writeSectionData(const MCSectionData *SD,
738738
uint64_t MCAssembler::handleFixup(const MCAsmLayout &Layout,
739739
MCFragment &F,
740740
const MCFixup &Fixup) {
741-
// Evaluate the fixup.
742-
MCValue Target;
743-
uint64_t FixedValue;
744-
if (!evaluateFixup(Layout, Fixup, &F, Target, FixedValue)) {
745-
// The fixup was unresolved, we need a relocation. Inform the object
746-
// writer of the relocation, and give it an opportunity to adjust the
747-
// fixup value if need be.
748-
getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, FixedValue);
749-
}
750-
return FixedValue;
751-
}
741+
// Evaluate the fixup.
742+
MCValue Target;
743+
uint64_t FixedValue;
744+
if (!evaluateFixup(Layout, Fixup, &F, Target, FixedValue)) {
745+
// The fixup was unresolved, we need a relocation. Inform the object
746+
// writer of the relocation, and give it an opportunity to adjust the
747+
// fixup value if need be.
748+
getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, FixedValue);
749+
}
750+
return FixedValue;
751+
}
752752

753753
void MCAssembler::Finish() {
754754
DEBUG_WITH_TYPE("mc-dump", {

0 commit comments

Comments
 (0)