mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01: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. llvm-svn: 282380
This commit is contained in:
parent
7eee8eb33a
commit
59981672f6
@ -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…
Reference in New Issue
Block a user