[llvm] r282669 - MachineFunction: Add missing newline in debug print()
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 28 18:47:43 PDT 2016
Author: matze
Date: Wed Sep 28 20:47:42 2016
New Revision: 282669
URL: http://llvm.org/viewvc/llvm-project?rev=282669&view=rev
Log:
MachineFunction: Add missing newline in debug print()
Should not be a functional but an aesthetic change.
Modified:
llvm/trunk/lib/CodeGen/MachineFunction.cpp
Modified: llvm/trunk/lib/CodeGen/MachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineFunction.cpp?rev=282669&r1=282668&r2=282669&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineFunction.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineFunction.cpp Wed Sep 28 20:47:42 2016
@@ -417,6 +417,7 @@ StringRef MachineFunction::getName() con
void MachineFunction::print(raw_ostream &OS, const SlotIndexes *Indexes) const {
OS << "# Machine code for function " << getName() << ": ";
getProperties().print(OS);
+ OS << '\n';
// Print Frame Information
FrameInfo->print(*this, OS);
More information about the llvm-commits
mailing list