[PATCH] D41126: [SelectionDAG] Fixed f16-from-vector promotion problem
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 9 08:04:39 PST 2018
arsenm added inline comments.
================
Comment at: lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp:175
+ && Op.getValueType().getVectorNumElements() == 1)
+ Op = GetScalarizedVector(Op);
EVT NewVT = N->getValueType(0).getVectorElementType();
----------------
Can you add an assert that the v1 type isn't legal?
https://reviews.llvm.org/D41126
More information about the llvm-commits
mailing list