[PATCH] D38862: Add must alias info to ModRefInfo.

Sanjoy Das via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 21 11:15:36 PST 2017


sanjoy accepted this revision.
sanjoy added a comment.
This revision is now accepted and ready to land.

lgtm!



================
Comment at: include/llvm/Analysis/AliasAnalysisEvaluator.h:41
 public:
   AAEvaluator()
       : FunctionCount(), NoAliasCount(), MayAliasCount(), PartialAliasCount(),
----------------
Another cleanup that might be worth doing as a separate change -- change these fields to use the C++11 member initializer like `int64_6 MustCount = 0;`.


https://reviews.llvm.org/D38862





More information about the llvm-commits mailing list