diff options
Diffstat (limited to 'llvm/lib/CodeGen/InstrSched/SchedGraph.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/InstrSched/SchedGraph.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp index 8a9c8e573b3..781604eaae7 100644 --- a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp +++ b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp @@ -132,7 +132,7 @@ SchedGraphEdge::~SchedGraphEdge()  {  } -void SchedGraphEdge::dump(int indent=0) const { +void SchedGraphEdge::dump(int indent) const {    cerr << std::string(indent*2, ' ') << *this;   } @@ -171,7 +171,7 @@ SchedGraphNode::~SchedGraphNode()                  deleter<SchedGraphEdge>);  } -void SchedGraphNode::dump(int indent=0) const { +void SchedGraphNode::dump(int indent) const {    cerr << std::string(indent*2, ' ') << *this;   } | 

