]> granicus.if.org Git - llvm/commitdiff
[SCEV] Fix the order of members in the initializer list.
authorChandler Carruth <chandlerc@gmail.com>
Mon, 26 Sep 2016 04:49:58 +0000 (04:49 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Mon, 26 Sep 2016 04:49:58 +0000 (04:49 +0000)
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

lib/Analysis/ScalarEvolution.cpp

index ea7c17db973dd3657c22962ffde712a1c621d73a..c46464c6a2504824441c4e8a989ae16dcdcb0349 100644 (file)
@@ -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)),