summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorFrancis Visoiu Mistrih <francisvm@yahoo.com>2018-01-18 18:05:15 +0000
committerFrancis Visoiu Mistrih <francisvm@yahoo.com>2018-01-18 18:05:15 +0000
commiteb3f76fc83146f85b424a8f923f65263069876dd (patch)
tree151b17a251cc8e20adf951186552f3c261e70662 /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent378b5f3de600ef68d856003454d0e9f3a818762f (diff)
downloadbcm5719-llvm-eb3f76fc83146f85b424a8f923f65263069876dd.tar.gz
bcm5719-llvm-eb3f76fc83146f85b424a8f923f65263069876dd.zip
[CodeGen][NFC] Rename IsVerbose to IsStandalone in Machine*::print
Committed r322867 too soon. Differential Revision: https://reviews.llvm.org/D42239 llvm-svn: 322868
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineBasicBlock.cpp8
1 files changed, 4 insertions, 4 deletions
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.
OpenPOWER on IntegriCloud