[PATCH] D60150: [DAGCombiner][x86] scalarize splatted vector FP ops
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 4 09:47:16 PDT 2019
spatel marked an inline comment as done.
spatel added inline comments.
================
Comment at: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:18133
+ // splat (scalar_bo (extelt L, Index), (extelt R, Index))
+ SDValue L = N0.getOperand(0), R = N0.getOperand(1);
+ SDLoc DL(N);
----------------
RKSimon wrote:
> Should we assert that the splat index is coming from N0?
Sure - I can add that. The check is at line 18080 above here.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60150/new/
https://reviews.llvm.org/D60150
More information about the llvm-commits
mailing list