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
Testcase:
#include <stdlib.h> void f() { exit(1); } void (ff)() = f; int r, s; void g(int a, intrestrict p) { if (a) {ff(); r = p[1]; } else { s = p[1]; } } void (gg)(int, intrestrict) = g; int main() { gg(1, 0); }
Continuation of bug 27858
(Artificial testcase.)
The text was updated successfully, but these errors were encountered:
r272495.
Sorry, something went wrong.
No branches or pull requests
Extended Description
Testcase:
#include <stdlib.h>
void f() { exit(1); }
void (ff)() = f;
int r, s;
void g(int a, intrestrict p) {
if (a) {ff(); r = p[1]; }
else { s = p[1]; }
}
void (gg)(int, intrestrict) = g;
int main() {
gg(1, 0);
}
Continuation of bug 27858
(Artificial testcase.)
The text was updated successfully, but these errors were encountered: