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
Static analyser cppcheck says:
polly/include/polly/ScheduleTreeTransform.h:52:7: style: Statements following 'return' will never be executed. [unreachableCode]
Source code is
case isl_schedule_node_set: return getDerived().visitSet(Node.as<isl::schedule_node_set>(), std::forward<Args>(args)...); assert(isl_schedule_node_n_children(Node.get()) >= 2);
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-polly
Author: None (dcb314)
case isl_schedule_node_set: return getDerived().visitSet(Node.as<isl::schedule_node_set>(), std::forward<Args>(args)...); assert(isl_schedule_node_n_children(Node.get()) >= 2);
Sorry, something went wrong.
[polly] Fix cppcheck SA comment reported in llvm#91235
a46b778
This patch moves the unreachable assert before return statement. Fixes llvm#91235.
[polly] Fix cppcheck SA comment reported in #91235 (#93505)
d33864d
This patch moves the unreachable assert before return statement. Fixes #91235.
[polly] Fix cppcheck SA comment reported in llvm#91235 (llvm#93505)
3f598ed
Successfully merging a pull request may close this issue.
Static analyser cppcheck says:
polly/include/polly/ScheduleTreeTransform.h:52:7: style: Statements following 'return' will never be executed. [unreachableCode]
Source code is
The text was updated successfully, but these errors were encountered: