MachineFunction: Add missing newline in debug print()
authorMatthias Braun <matze@braunis.de>
Thu, 29 Sep 2016 01:47:42 +0000 (01:47 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 29 Sep 2016 01:47:42 +0000 (01:47 +0000)
Should not be a functional but an aesthetic change.

llvm-svn: 282669

llvm/lib/CodeGen/MachineFunction.cpp

index f6da4b1..dd306b8 100644 (file)
@@ -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);