diff options
author | Chris Lattner <sabre@nondot.org> | 2002-06-25 16:13:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-06-25 16:13:24 +0000 |
commit | 113f4f4609335e1241b2a3b1bab70b470f322148 (patch) | |
tree | 22aad567b22fa1564ca74d2a0c4582df4f6d2e81 /llvm/lib/CodeGen/InstrSched/SchedGraph.cpp | |
parent | 7076ff29ed02c3472e82575594386739a4bb3e34 (diff) | |
download | bcm5719-llvm-113f4f4609335e1241b2a3b1bab70b470f322148.tar.gz bcm5719-llvm-113f4f4609335e1241b2a3b1bab70b470f322148.zip |
MEGAPATCH checkin.
For details, See: docs/2002-06-25-MegaPatchInfo.txt
llvm-svn: 2779
Diffstat (limited to 'llvm/lib/CodeGen/InstrSched/SchedGraph.cpp')
-rw-r--r-- | llvm/lib/CodeGen/InstrSched/SchedGraph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp index 0629f8c75fb..3cd6cfafafc 100644 --- a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp +++ b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp @@ -985,7 +985,7 @@ SchedGraphSet::buildGraphsForMethod(const Function *F, const TargetMachine& target) { for (Function::const_iterator BI = F->begin(); BI != F->end(); ++BI) - addGraph(new SchedGraph(*BI, target)); + addGraph(new SchedGraph(BI, target)); } |