From eb3f76fc83146f85b424a8f923f65263069876dd Mon Sep 17 00:00:00 2001 From: Francis Visoiu Mistrih Date: Thu, 18 Jan 2018 18:05:15 +0000 Subject: [CodeGen][NFC] Rename IsVerbose to IsStandalone in Machine*::print Committed r322867 too soon. Differential Revision: https://reviews.llvm.org/D42239 llvm-svn: 322868 --- llvm/lib/CodeGen/MachineBasicBlock.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp') diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 9c0bec0f2d1..1ed810bf817 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -260,7 +260,7 @@ std::string MachineBasicBlock::getFullName() const { } void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes, - bool IsVerbose) const { + bool IsStandalone) const { const MachineFunction *MF = getParent(); if (!MF) { OS << "Can't print out MachineBasicBlock because parent MachineFunction" @@ -270,12 +270,12 @@ void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes, const Function &F = MF->getFunction(); const Module *M = F.getParent(); ModuleSlotTracker MST(M); - print(OS, MST, Indexes, IsVerbose); + print(OS, MST, Indexes, IsStandalone); } void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, const SlotIndexes *Indexes, - bool IsVerbose) const { + bool IsStandalone) const { const MachineFunction *MF = getParent(); if (!MF) { OS << "Can't print out MachineBasicBlock because parent MachineFunction" @@ -331,7 +331,7 @@ void MachineBasicBlock::print(raw_ostream &OS, ModuleSlotTracker &MST, OS << '\t'; if (I.isInsideBundle()) OS << " * "; - I.print(OS, MST, IsVerbose); + I.print(OS, MST, IsStandalone); } // Print the successors of this block according to the CFG. -- cgit v1.2.3