Skip to content

Commit 6b38275

Browse files
committed
Clang format.
1 parent d63fabf commit 6b38275

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

llvm/lib/CodeGen/MachineModuleInfo.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ class FreeMachineFunction : public FunctionPass {
155155
return true;
156156
}
157157

158-
StringRef getPassName() const override {
159-
return "Free MachineFunction";
160-
}
158+
StringRef getPassName() const override { return "Free MachineFunction"; }
161159
};
162160

163161
} // end anonymous namespace
@@ -181,7 +179,8 @@ MachineModuleInfoWrapperPass::MachineModuleInfoWrapperPass(
181179
}
182180

183181
MachineModuleInfoWrapperPass::MachineModuleInfoWrapperPass(
184-
MachineModuleInfo &&MMI): ImmutablePass(ID), MMI(std::move(MMI)) {
182+
MachineModuleInfo &&MMI)
183+
: ImmutablePass(ID), MMI(std::move(MMI)) {
185184
initializeMachineModuleInfoWrapperPassPass(*PassRegistry::getPassRegistry());
186185
}
187186

@@ -229,8 +228,8 @@ bool MachineModuleInfoWrapperPass::doInitialization(Module &M) {
229228
Ctx.diagnose(
230229
DiagnosticInfoSrcMgr(SMD, M.getName(), IsInlineAsm, LocCookie));
231230
});
232-
MMI.DbgInfoAvailable = !DisableDebugInfoPrinting &&
233-
!M.debug_compile_units().empty();
231+
MMI.DbgInfoAvailable =
232+
!DisableDebugInfoPrinting && !M.debug_compile_units().empty();
234233
return false;
235234
}
236235

0 commit comments

Comments
 (0)