diff options
author | Matthias Braun <matze@braunis.de> | 2016-09-29 01:47:42 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-09-29 01:47:42 +0000 |
commit | aae7fe99d0860bdf637cb38dd1de8eb4a58e92ad (patch) | |
tree | 852b5277766b46d543932eb665665c2516394983 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | e8b2df47a33edaedf18ee53d279041e8f2e97a25 (diff) | |
download | bcm5719-llvm-aae7fe99d0860bdf637cb38dd1de8eb4a58e92ad.tar.gz bcm5719-llvm-aae7fe99d0860bdf637cb38dd1de8eb4a58e92ad.zip |
MachineFunction: Add missing newline in debug print()
Should not be a functional but an aesthetic change.
llvm-svn: 282669
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index f6da4b15ccf..dd306b8af78 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -417,6 +417,7 @@ StringRef MachineFunction::getName() const { 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); |