mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
GH-131498: Remove conditional stack effects (GH-131499)
* Adds some missing #includes
This commit is contained in:
parent
443c0cd17c
commit
7ebd71ee14
23 changed files with 129 additions and 272 deletions
|
@ -59,7 +59,6 @@
|
|||
#define guard
|
||||
#define override
|
||||
#define specializing
|
||||
#define split
|
||||
#define replicate(TIMES)
|
||||
#define tier1
|
||||
#define no_save_ip
|
||||
|
@ -1686,8 +1685,10 @@ dummy_func(
|
|||
ERROR_IF(PyStackRef_IsNull(*res), error);
|
||||
}
|
||||
|
||||
op(_PUSH_NULL_CONDITIONAL, ( -- null if (oparg & 1))) {
|
||||
null = PyStackRef_NULL;
|
||||
op(_PUSH_NULL_CONDITIONAL, ( -- null[oparg & 1])) {
|
||||
if (oparg & 1) {
|
||||
null[0] = PyStackRef_NULL;
|
||||
}
|
||||
}
|
||||
|
||||
macro(LOAD_GLOBAL) =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue