From: Chandler Carruth Date: Mon, 26 Sep 2016 04:49:58 +0000 (+0000) Subject: [SCEV] Fix the order of members in the initializer list. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce297d7352b38efbd0e2862f07bd22141505cb97;p=llvm [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 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index ea7c17db973..c46464c6a25 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/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)),