summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2016-09-26 04:49:58 +0000
committerChandler Carruth <chandlerc@gmail.com>2016-09-26 04:49:58 +0000
commit68abda52c29bb4c6e99b15552853d8d09160f97c (patch)
tree8789e2e7690de4ef71a79394e09013f9d50e782e
parentc094131557762e916d8e3d66f3982edb6c4ae0a4 (diff)
downloadbcm5719-llvm-68abda52c29bb4c6e99b15552853d8d09160f97c.tar.gz
bcm5719-llvm-68abda52c29bb4c6e99b15552853d8d09160f97c.zip
[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
-rw-r--r--llvm/lib/Analysis/ScalarEvolution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp
index ea7c17db973..c46464c6a25 100644
--- a/llvm/lib/Analysis/ScalarEvolution.cpp
+++ b/llvm/lib/Analysis/ScalarEvolution.cpp
@@ -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)),
OpenPOWER on IntegriCloud