mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +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.
|
||||
Terms.erase(
|
||||
std::remove_if(Terms.begin(), Terms.end(),
|
||||
[](const SCEV *E) { return isa<SCEVConstant>(E);}),
|
||||
Terms.end());
|
||||
Terms.erase(std::remove_if(Terms.begin(), Terms.end(), [](const SCEV *E) {
|
||||
return isa<SCEVConstant>(E);
|
||||
}),
|
||||
Terms.end());
|
||||
|
||||
if (Terms.size() > 0)
|
||||
findArrayDimensionsRec(SE, Terms, Sizes, Zero, One);
|
||||
|
Reference in New Issue
Block a user