Commit cb79ec59 authored by lxq's avatar lxq

remove useless debug output

parent 1cc349ed
...@@ -82,10 +82,6 @@ LiveRangeAnalyzer::get_dfs_order(Function *func) { ...@@ -82,10 +82,6 @@ LiveRangeAnalyzer::get_dfs_order(Function *func) {
for (auto succ : bb->get_succ_basic_blocks()) for (auto succ : bb->get_succ_basic_blocks())
Q.push_front(succ); Q.push_front(succ);
} }
cout << "DFS order for function " << func->get_name() << ":\n";
for (auto bb : BB_DFS_Order)
cout << bb->get_name() << " ";
cout << endl;
} }
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment