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.
1 parent 090c61b commit f444c02Copy full SHA for f444c02
llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
@@ -5436,12 +5436,10 @@ bool LSRInstance::SortLSRUses() {
5436
5437
// If there are too many forlmulae then LSRUses w/ less formulae
5438
// go first to save compilation time
5439
- if (LExpensive != RExpensive) {
+ if (LExpensive != RExpensive)
5440
return RExpensive;
5441
- }
5442
- if (LExpensive) {
+ if (LExpensive)
5443
return L->Formulae.size() < R->Formulae.size();
5444
5445
5446
// LSRUses w/ many registers and formulae go first to avoid too big
5447
// reduction of considered solutions count
0 commit comments