[PATCH] D40933: [ModRefInfo] Make enum ModRefInfo an enum class [NFC].
Sanjoy Das via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 6 17:26:56 PST 2017
sanjoy added a comment.
This is just a find-replace right? I didn't look at the textual changes carefully assuming that but please let me know if there are pieces of this CL that are *not* find-replace and I'll review those more carefully.
================
Comment at: include/llvm/Analysis/AliasAnalysis.h:101
-enum ModRefInfo {
+enum class ModRefInfo {
/// The access neither references nor modifies the value stored in memory.
----------------
Now that we have an enum class, the `MRI_` prefix should be removed (hopefully just a find-replace).
https://reviews.llvm.org/D40933
More information about the llvm-commits
mailing list