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
Testing with --no-inlining, else the problem is masked by inlining. Input:
--no-inlining
vec2 r; int i=1; for (int i=2; i<3; i++) r.x=i; r.y=i;
Output:
vec2 f; int m=1,i=2; for(;i<3;i++) f.x=i; f.y=i;
The last line should be f.y=m;
f.y=m;
before 5b8f945:
vec2 f; int m=1; for(int i=2;i<3;i++) f.x=i; f.y=m;
The text was updated successfully, but these errors were encountered:
Revert "Merge for-declaration with the previous declaration"
e3aea3b
This is a rollback of #371 Fixes #397 Fixes #375
1edf9c2
Successfully merging a pull request may close this issue.
Testing with
--no-inlining
, else the problem is masked by inlining.Input:
Output:
The last line should be
f.y=m;
before 5b8f945:
The text was updated successfully, but these errors were encountered: