Skip to content

Commit 1f48300

Browse files
committed
EXIT_IF --> DEOPT_IF
1 parent 61d8bb3 commit 1f48300

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Include/internal/pycore_opcode_metadata.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Include/internal/pycore_uop_metadata.h

Lines 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ dummy_func(
749749
assert(INLINE_CACHE_ENTRIES_BINARY_OP == 5);
750750
assert(d && d->guard);
751751
int res = d->guard(left_o, right_o);
752-
EXIT_IF(!res);
752+
DEOPT_IF(!res);
753753
}
754754

755755
pure op(_BINARY_OP_EXTEND, (descr/4, left, right -- res)) {

0 commit comments

Comments
 (0)