Skip to content

Commit e863c2c

Browse files
committed
Mark args as unused
1 parent f9bd678 commit e863c2c

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

Python/optimizer_bytecodes.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -846,9 +846,7 @@ dummy_func(void) {
846846
next = sym_new_type(ctx, &PyLong_Type);
847847
}
848848

849-
op(_CALL_TYPE_1, (callable, null, arg -- res)) {
850-
(void)callable;
851-
(void)null;
849+
op(_CALL_TYPE_1, (unused, unused, arg -- res)) {
852850
if (sym_has_type(arg)) {
853851
res = sym_new_const(ctx, (PyObject *)sym_get_type(arg));
854852
}

Python/optimizer_cases.c.h

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)