diff options
Diffstat (limited to 'lib/Target/Mips/MipsISelDAGToDAG.cpp')
-rw-r--r-- | lib/Target/Mips/MipsISelDAGToDAG.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/Mips/MipsISelDAGToDAG.cpp b/lib/Target/Mips/MipsISelDAGToDAG.cpp index d0641a19d7..ca72ff03dc 100644 --- a/lib/Target/Mips/MipsISelDAGToDAG.cpp +++ b/lib/Target/Mips/MipsISelDAGToDAG.cpp @@ -112,7 +112,7 @@ void MipsDAGToDAGISel::InstructionSelect() { DEBUG(BB->dump()); // Codegen the basic block. DEBUG(errs() << "===== Instruction selection begins:\n"); - Indent = 0; + DEBUG(Indent = 0); // Select target instructions for the DAG. SelectRoot(*CurDAG); @@ -190,14 +190,14 @@ SDNode* MipsDAGToDAGISel::Select(SDValue N) { DEBUG(errs().indent(Indent) << "Selecting: "; Node->dump(CurDAG); errs() << "\n"); - Indent += 2; + DEBUG(Indent += 2); // If we have a custom node, we already have selected! if (Node->isMachineOpcode()) { DEBUG(errs().indent(Indent-2) << "== "; Node->dump(CurDAG); errs() << "\n"); - Indent -= 2; + DEBUG(Indent -= 2); return NULL; } @@ -367,7 +367,7 @@ SDNode* MipsDAGToDAGISel::Select(SDValue N) { else DEBUG(ResNode->dump(CurDAG)); DEBUG(errs() << "\n"); - Indent -= 2; + DEBUG(Indent -= 2); return ResNode; } |