Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 025049d

Browse filesBrowse files
committed
Fix tier 2 FT build
1 parent 88562ec commit 025049d
Copy full SHA for 025049d

File tree

3 files changed

+3
-16
lines changed
Filter options

3 files changed

+3
-16
lines changed

‎Include/internal/pycore_uop_metadata.h

Copy file name to clipboardExpand all lines: Include/internal/pycore_uop_metadata.h
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Python/bytecodes.c

Copy file name to clipboardExpand all lines: Python/bytecodes.c
+1-7Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3268,13 +3268,7 @@ dummy_func(
32683268
int result = _PyList_GetItemRefNoLock((PyListObject *)list_o, PyStackRef_UntagInt(null_or_index), &next);
32693269
// A negative result means we lost a race with another thread
32703270
// and we need to take the slow path.
3271-
DEOPT_IF(result < 0);
3272-
if (result == 0) {
3273-
null_or_index = PyStackRef_TagInt(-1);
3274-
/* Jump forward oparg, then skip following END_FOR instruction */
3275-
JUMPBY(oparg + 1);
3276-
DISPATCH();
3277-
}
3271+
DEOPT_IF(result <= 0);
32783272
#else
32793273
assert(PyStackRef_UntagInt(null_or_index) < PyList_GET_SIZE(list_o));
32803274
next = PyStackRef_FromPyObjectNew(PyList_GET_ITEM(list_o, PyStackRef_UntagInt(null_or_index)));

‎Python/executor_cases.c.h

Copy file name to clipboardExpand all lines: Python/executor_cases.c.h
+1-8Lines changed: 1 addition & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.