mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
Correct formatting.
Sorry for the commit spam. My clang-format crashed on me and the vim plugin did not print an error, but instead just left the formatting untouched. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208358 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -7224,10 +7224,10 @@ static void findArrayDimensionsRec(ScalarEvolution &SE,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Remove all SCEVConstants.
|
// Remove all SCEVConstants.
|
||||||
Terms.erase(
|
Terms.erase(std::remove_if(Terms.begin(), Terms.end(), [](const SCEV *E) {
|
||||||
std::remove_if(Terms.begin(), Terms.end(),
|
return isa<SCEVConstant>(E);
|
||||||
[](const SCEV *E) { return isa<SCEVConstant>(E);}),
|
}),
|
||||||
Terms.end());
|
Terms.end());
|
||||||
|
|
||||||
if (Terms.size() > 0)
|
if (Terms.size() > 0)
|
||||||
findArrayDimensionsRec(SE, Terms, Sizes, Zero, One);
|
findArrayDimensionsRec(SE, Terms, Sizes, Zero, One);
|
||||||
|
Reference in New Issue
Block a user