-
- Downloads
py: remove "if (0)" and "if (false)" branches.
Prior to this commit, building the unix port with `DEBUG=1` and `-finstrument-functions` the compilation would fail with an error like "control reaches end of non-void function". This change fixes this by removing the problematic "if (0)" branches. Not all branches affect compilation, but they are all removed for consistency.
Showing
- py/compile.c 6 additions, 9 deletionspy/compile.c
- py/emitnative.c 3 additions, 4 deletionspy/emitnative.c
- py/objarray.c 6 additions, 7 deletionspy/objarray.c
- py/objfun.c 3 additions, 3 deletionspy/objfun.c
- py/objint_mpz.c 3 additions, 3 deletionspy/objint_mpz.c
- py/runtime.c 3 additions, 4 deletionspy/runtime.c
Loading
Please register or sign in to comment