Commit b32af789 authored by 王建楠's avatar 王建楠
Browse files

fix: upd line limit

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -209,7 +209,7 @@ void func_inline(IR::CompileUnit *ir) {
int instr_cnt = 0;
func->for_each(
[&](IR::BB *bb) { instr_cnt += bb->instrs.size(); });
if (instr_cnt >= 1000)
if (instr_cnt >= 100)
return;
// std::cerr << func->name << "(" << bb->name << ") -> " <<
// func_t->name << " [" << i << "," << instr_cnt << "," <<
......
Supports Markdown
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