gh-112519: Make it possible to specify instruction flags for pseudo instructions in bytecodes.c (#112520)

This commit is contained in:
Irit Katriel 2023-11-30 11:03:30 +00:00 committed by GitHub
parent 7eeea13403
commit 07ebd46f9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 76 additions and 12 deletions

View file

@ -2831,15 +2831,15 @@ dummy_func(
ERROR_IF(res == NULL, error);
}
pseudo(SETUP_FINALLY) = {
pseudo(SETUP_FINALLY, (HAS_ARG)) = {
NOP,
};
pseudo(SETUP_CLEANUP) = {
pseudo(SETUP_CLEANUP, (HAS_ARG)) = {
NOP,
};
pseudo(SETUP_WITH) = {
pseudo(SETUP_WITH, (HAS_ARG)) = {
NOP,
};