Also adds a small comment blurb on control flow + no-wrap flags, since
that question came up a few days back on llvm-dev.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/Analysis/ScalarEvolution.cpp | ||
---|---|---|
4782 ↗ | (On Diff #54025) | return false; |
4806 ↗ | (On Diff #54025) | I'd prefer adding braces for this multi-line for loop. |
4810 ↗ | (On Diff #54025) | This and the next return has different behavior when adding two AddRec's as then the function will always return after considering the first one as the Op but the previous code considered both. |
4813 ↗ | (On Diff #54025) | This has different behavior when adding two AddRec's as then the function will always return after considering the first one as the Op but before it considered both. |