All conversion templates in MathToVM/Patterns.cpp bail when the result is a VectorType:
if (isa<VectorType>(srcOp.getResult().getType())) {
return failure();
}
This appears in UnaryArithmeticOpConversion, BinaryArithmeticOpConversion and TernaryArithmeticOpConversion, each carrying a // TODO(benvanik): support vectors comment.
All conversion templates in MathToVM/Patterns.cpp bail when the result is a VectorType:
This appears in UnaryArithmeticOpConversion, BinaryArithmeticOpConversion and TernaryArithmeticOpConversion, each carrying a
// TODO(benvanik): support vectorscomment.