[PATCH] D52653: [CodeGen, AArch64] Combine Interleaved Loads which are not covered by the Vectorizer

Martin Elshuber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 19 10:42:14 PST 2018


marels added inline comments.


================
Comment at: llvm/trunk/lib/CodeGen/InterleavedLoadCombinePass.cpp:814
+    // Both operands produced sensible results?
+    else if ((LHS.BB == RHS.BB) && (LHS.PV == LHS.PV)) {
+      Result.BB = LHS.BB;
----------------
xbolva00 wrote:
> self-comparison always evaluates to true [-Wtautological-compare]
> 
Thanks, I pushed a fix minutes ago


Repository:
  rL LLVM

https://reviews.llvm.org/D52653





More information about the llvm-commits mailing list