mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
tcg/optimize: Use finish_folding as default in tcg_optimize
All non-default cases now finish folding within each function. Do the same with the default case and assert it is done after. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
4fcd14ca64
commit
0ae5642889
1 changed files with 2 additions and 4 deletions
|
@ -3096,11 +3096,9 @@ void tcg_optimize(TCGContext *s)
|
|||
done = true;
|
||||
break;
|
||||
default:
|
||||
done = finish_folding(&ctx, op);
|
||||
break;
|
||||
}
|
||||
|
||||
if (!done) {
|
||||
finish_folding(&ctx, op);
|
||||
}
|
||||
tcg_debug_assert(done);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue