[llvm-branch-commits] [llvm] [LV][REVEC][AArch64] Proof of concept for re-vectorisation (PR #208213)

Florian Hahn via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Thu Jul 30 02:09:52 PDT 2026


================
@@ -517,8 +513,6 @@ Type *llvm::computeScalarTypeForInstruction(unsigned Opcode,
     assert(Op0Ty->isIntegerTy() && "expected integer operand");
     return IntegerType::get(Ctx, 32);
   case Instruction::Select: {
-    assert((!Op0Ty || Op0Ty->isIntegerTy(1)) &&
----------------
fhahn wrote:

should not weaken type checks; if needed, this should check that it is a vector if integers/ptrs etc as well.

https://github.com/llvm/llvm-project/pull/208213


More information about the llvm-branch-commits mailing list