mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 16:21:36 +00:00
[SCEV] Fix the order of members in the initializer list.
Noticed due to the warning on this line. Sanjoy is on a less-than-awesome internet connection, so committing on his behalf. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282380 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d6345b8af0
commit
ce297d7352
@ -9585,8 +9585,8 @@ ScalarEvolution::ScalarEvolution(ScalarEvolution &&Arg)
|
||||
std::move(Arg.ConstantEvolutionLoopExitValue)),
|
||||
ValuesAtScopes(std::move(Arg.ValuesAtScopes)),
|
||||
LoopDispositions(std::move(Arg.LoopDispositions)),
|
||||
BlockDispositions(std::move(Arg.BlockDispositions)),
|
||||
LoopPropertiesCache(std::move(Arg.LoopPropertiesCache)),
|
||||
BlockDispositions(std::move(Arg.BlockDispositions)),
|
||||
UnsignedRanges(std::move(Arg.UnsignedRanges)),
|
||||
SignedRanges(std::move(Arg.SignedRanges)),
|
||||
UniqueSCEVs(std::move(Arg.UniqueSCEVs)),
|
||||
|
Loading…
x
Reference in New Issue
Block a user