[PATCH] D76305: [RS4GC] Fix algorithm to avoid setting vector BDV for scalar derived pointer

Denis Antrushin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 18 07:02:46 PDT 2020


dantrushin added inline comments.


================
Comment at: llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp:651
+        (isa<VectorType>(V->getType()) && !isa<VectorType>(Input->getType())) ||
+        (isa<VectorType>(Input->getType()) && !isa<VectorType>(V->getType()));
+    if (differing_scalar_vector)
----------------
`isa<VectorType>(V->getType()) != isa<VectorType>(Input->getType())` ?



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D76305





More information about the llvm-commits mailing list