We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Transforms an ordinary counted loop into an infinite loop. I have attached C source code and llvm bitcode to demonstrate the bug. To reproduce:
$ clang -O2 ./KS-2.c -emit-llvm -c -o ks.all.ll $ clang ks.all.ll -o ks.all $ ./ks.all 0 + 1: 1 $ opt ks.all.ll -indvars -o ks.all.indvars.ll $ clang ks.all.indvars.ll -o ks.all.indvars $ ./ks.all.indvars 0 + 1: 1 0 + 1: 1 0 + 1: 1 ...
The text was updated successfully, but these errors were encountered:
Fixed in 113057.
Sorry, something went wrong.
Merge pull request llvm#8450 from adrian-prantl/125125193
4de562f
Add a frame recognizer for Swift runtime error with instrumentation.
No branches or pull requests
Extended Description
Transforms an ordinary counted loop into an infinite loop. I have attached C source code and llvm bitcode to demonstrate the bug. To reproduce:
$ clang -O2 ./KS-2.c -emit-llvm -c -o ks.all.ll
$ clang ks.all.ll -o ks.all
$ ./ks.all
0 + 1: 1
$ opt ks.all.ll -indvars -o ks.all.indvars.ll
$ clang ks.all.indvars.ll -o ks.all.indvars
$ ./ks.all.indvars
0 + 1: 1
0 + 1: 1
0 + 1: 1
...
The text was updated successfully, but these errors were encountered: