gh-145866: Convert _CALL_INTRINSIC_2 to leave its inputs on the stack to be cleaned up by _POP_TOP (GH-146262)

This commit is contained in:
Kevin Huai 2026-03-26 03:41:07 -06:00 committed by GitHub
parent 495178ab05
commit f5364ae750
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 1346 additions and 1283 deletions

View file

@ -1265,6 +1265,12 @@ dummy_func(void) {
v = value;
}
op(_CALL_INTRINSIC_2, (value2_st, value1_st -- res, vs1, vs2)) {
res = sym_new_not_null(ctx);
vs1 = value1_st;
vs2 = value2_st;
}
op(_GUARD_IS_TRUE_POP, (flag -- )) {
sym_apply_predicate_narrowing(ctx, flag, true);