We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In file included from Python/ceval.c:770: Python/generated_cases.c.h:3463:51: warning: code will never be executed [-Wunreachable-code] if (1) { stack_pointer[-(1 + (1 ? 1 : 0))] = res2; } ^ Python/generated_cases.c.h:3463:43: note: silence by adding parentheses to mark code as explicitly dead if (1) { stack_pointer[-(1 + (1 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( ) Python/generated_cases.c.h:3437:58: warning: code will never be executed [-Wunreachable-code] if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^~~~ Python/generated_cases.c.h:3437:17: note: silence by adding parentheses to mark code as explicitly dead if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( ) Python/generated_cases.c.h:3437:47: warning: code will never be executed [-Wunreachable-code] if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^ Python/generated_cases.c.h:3437:43: note: silence by adding parentheses to mark code as explicitly dead if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( ) Python/generated_cases.c.h:3415:58: warning: code will never be executed [-Wunreachable-code] if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^~~~ Python/generated_cases.c.h:3415:17: note: silence by adding parentheses to mark code as explicitly dead if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( ) Python/generated_cases.c.h:3415:47: warning: code will never be executed [-Wunreachable-code] if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^ Python/generated_cases.c.h:3415:43: note: silence by adding parentheses to mark code as explicitly dead if (0) { stack_pointer[-(1 + (0 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( ) Python/generated_cases.c.h:3387:51: warning: code will never be executed [-Wunreachable-code] if (1) { stack_pointer[-(1 + (1 ? 1 : 0))] = res2; } ^ Python/generated_cases.c.h:3387:43: note: silence by adding parentheses to mark code as explicitly dead if (1) { stack_pointer[-(1 + (1 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( ) Python/generated_cases.c.h:3365:51: warning: code will never be executed [-Wunreachable-code] if (1) { stack_pointer[-(1 + (1 ? 1 : 0))] = res2; } ^ Python/generated_cases.c.h:3365:43: note: silence by adding parentheses to mark code as explicitly dead if (1) { stack_pointer[-(1 + (1 ? 1 : 0))] = res2; } ^ /* DISABLES CODE */ ( )
Not a significant issue, but good to be fixed.
The text was updated successfully, but these errors were encountered:
pythongh-106797: Reduce warning logs from Python/generated_cases.c.h
346852c
gh-106797: Remove warning logs from Python/generated_cases.c.h (gh-10…
48956cc
…6798)
Small fixes to code generator (#106845)
1e36ca6
These repair nits I found in PR gh-106798 (issue gh-106797) and in PR gh-106716 (issue gh-106706).
pythongh-106797: Remove warning logs from Python/generated_cases.c.h
d9ef32e
gh-106797: Remove warning logs from Python/generated_cases.c.h and ex…
bf70774
…ecutor_cases.c.h (gh-107889) gh-106797: Remove warning logs from Python/generated_cases.c.h
No branches or pull requests
Not a significant issue, but good to be fixed.
Linked PRs
The text was updated successfully, but these errors were encountered: