mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
gh-112519: Make it possible to specify instruction flags for pseudo instructions in bytecodes.c (#112520)
This commit is contained in:
parent
7eeea13403
commit
07ebd46f9e
6 changed files with 76 additions and 12 deletions
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue