diff options
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 67061ac2632..8dfce77dfca 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -885,10 +885,10 @@ dummy_func( switch (oparg) { case 2: cause = PyStackRef_AsPyObjectSteal(args[1]); - /* fall through */ + _Py_FALLTHROUGH; case 1: exc = PyStackRef_AsPyObjectSteal(args[0]); - /* fall through */ + _Py_FALLTHROUGH; case 0: if (do_raise(tstate, exc, cause)) { assert(oparg == 0); |