[PATCH] D134732: fix vectorization of library calls

Tim Schmielau via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 28 07:05:06 PDT 2022


tim.schmielau marked an inline comment as done.
tim.schmielau added inline comments.


================
Comment at: llvm/lib/Analysis/LoopAccessAnalysis.cpp:2211
         // the flag. Therefore, it is safe to ignore this read from memory.
-        auto *Call = dyn_cast<CallInst>(&I);
         if (Call && getVectorIntrinsicIDForCall(Call, TLI))
           continue;
----------------
RKSimon wrote:
> Drop the ```Call &&``` now that its inside the if()
Oops, thanks.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D134732/new/

https://reviews.llvm.org/D134732



More information about the llvm-commits mailing list