Skip to content

Commit 6851962

Browse files
committed
Remove JIT reference uniqueness on store
1 parent c7e53fb commit 6851962

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Python/optimizer_bytecodes.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ dummy_func(void) {
124124

125125
op(_SWAP_FAST, (value -- trash)) {
126126
JitOptRef tmp = GETLOCAL(oparg);
127-
GETLOCAL(oparg) = value;
128-
// GETLOCAL(oparg) = PyJitRef_RemoveUnique(value);
127+
GETLOCAL(oparg) = PyJitRef_RemoveUnique(value);
129128
trash = tmp;
130129
}
131130

Python/optimizer_cases.c.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.

0 commit comments

Comments
 (0)