[PATCH] D102765: [SelectionDAG] Add stub implementation of ReplaceInsertSubVectorResults
Paul Walker via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 20 10:47:36 PDT 2021
paulwalker-arm added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:16728-16730
+ case ISD::INSERT_SUBVECTOR:
+ ReplaceInsertSubVectorResults(N, Results, DAG);
+ return;
----------------
I'm not saying this is not the correct solution but you typically opt into having custom handling via `ReplaceNodeResults` so perhaps we've requested (via `setOperationAction()`) something we didn't want?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102765/new/
https://reviews.llvm.org/D102765
More information about the llvm-commits
mailing list