[PATCH] D60425: [GlobalISel][AArch64] Allow CallLowering to handle types

Amara Emerson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 9 10:04:05 PDT 2019


aemerson marked an inline comment as done.
aemerson added inline comments.


================
Comment at: llvm/lib/CodeGen/GlobalISel/CallLowering.cpp:161
+          const LLT OrigTy(OrigVT);
+          // Just handle the case where the VA type is 2 * original type.
+          if (VATy.getNumElements() != OrigVT.getVectorNumElements() * 2)
----------------
paquette wrote:
> Are we going to handle this? Debug output if so?
I don't have a test case yet, this was meant to just enable the vector icmp work. I'll add some debug here and the return handling too.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D60425





More information about the llvm-commits mailing list