summaryrefslogtreecommitdiff
path: root/lib/CodeGen/InstrSched/SchedGraph.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-25 06:17:51 +0000
committerChris Lattner <sabre@nondot.org>2002-07-25 06:17:51 +0000
commit0c0edf8afc35a42b15a24ebb5fa5f3fc674290ae (patch)
treeed8c32c0631b43d63d36b406b9c02baffd63f2b9 /lib/CodeGen/InstrSched/SchedGraph.cpp
parentbcafccebdbe59cdb888d5a6dc844dea998e02f5b (diff)
downloadllvm-0c0edf8afc35a42b15a24ebb5fa5f3fc674290ae.tar.gz
llvm-0c0edf8afc35a42b15a24ebb5fa5f3fc674290ae.tar.bz2
llvm-0c0edf8afc35a42b15a24ebb5fa5f3fc674290ae.tar.xz
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3075 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/SchedGraph.cpp')
-rw-r--r--lib/CodeGen/InstrSched/SchedGraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/InstrSched/SchedGraph.cpp b/lib/CodeGen/InstrSched/SchedGraph.cpp
index 8a9c8e573b..781604eaae 100644
--- a/lib/CodeGen/InstrSched/SchedGraph.cpp
+++ b/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;
}