[PATCH] D21636: [PM] LoopAccessInfo Refactor #2
Sanjoy Das via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 23 00:40:47 PDT 2016
sanjoy added a comment.
Minor drop by comment inline.
================
Comment at: include/llvm/Analysis/LoopAccessAnalysis.h:530
@@ +529,3 @@
+ LoopAccessInfo &operator=(LoopAccessInfo &&LAI) {
+ if (this == &LAI)
+ return *this;
----------------
This looks strange -- when will this check be true?
http://reviews.llvm.org/D21636
More information about the llvm-commits
mailing list