diff options
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index da286d79be9..58ad3c96c34 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -524,7 +524,7 @@ void MachineFunction::print(raw_ostream &OS, const SlotIndexes *Indexes) const { OS << '\n'; // If we print the whole function, don't print any verbose information, // since that information is already present. - BB.print(OS, MST, Indexes, /*IsVerbose=*/false); + BB.print(OS, MST, Indexes, /*IsStandalone=*/false); } OS << "\n# End machine code for function " << getName() << ".\n\n"; |