[PATCH] D25969: [AliasSetTracker] Make AST smarter about intrinsics that don't actually affect memory.
Geoff Berry via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 25 15:32:22 PDT 2016
gberry added inline comments.
================
Comment at: lib/Analysis/AliasSetTracker.cpp:417
+
+ if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
+ // These intrinsics will show up as affecting memory, but they are just
----------------
Small nit: use auto for this declaration
https://reviews.llvm.org/D25969
More information about the llvm-commits
mailing list