mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07: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:
+2
-4
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user