Skip to content

Commit b8e7866

Browse files
avoid name clash
1 parent 9fec34d commit b8e7866

File tree

6 files changed

+85
-85
lines changed

6 files changed

+85
-85
lines changed

Include/internal/pycore_uop_ids.h

Lines changed: 61 additions & 61 deletions
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: 16 additions & 16 deletions
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
@@ -5285,7 +5285,7 @@ dummy_func(
52855285
value = PyStackRef_FromPyObjectBorrow(ptr);
52865286
}
52875287

5288-
tier2 op(_SWAP3_LOAD_CONST_INLINE_BORROW, (ptr/4, callable, null, arg -- res, a, c)) {
5288+
tier2 op(_SHUFFLE_3_LOAD_CONST_INLINE_BORROW, (ptr/4, callable, null, arg -- res, a, c)) {
52895289
res = PyStackRef_FromPyObjectBorrow(ptr);
52905290
a = arg;
52915291
c = callable;

Python/executor_cases.c.h

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/optimizer_bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ dummy_func(void) {
12591259
goto error;
12601260
}
12611261
if (_Py_IsImmortal(temp)) {
1262-
REPLACE_OP(this_instr, _SWAP3_LOAD_CONST_INLINE_BORROW,
1262+
REPLACE_OP(this_instr, _SHUFFLE_3_LOAD_CONST_INLINE_BORROW,
12631263
0, (uintptr_t)temp);
12641264
}
12651265
res = sym_new_const(ctx, temp);

Python/optimizer_cases.c.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)