================
@@ -1856,7 +1856,7 @@ def CIR_SelectOp : CIR_Op<"select", [
     ```
   }];
 
-  let arguments = (ins CIR_BoolType:$condition, CIR_AnyType:$true_value,
+  let arguments = (ins CIR_ScalarOrVectorOf<CIR_BoolType>:$condition, 
CIR_AnyType:$true_value,
                        CIR_AnyType:$false_value);
----------------
xlauko wrote:

```suggestion
  let arguments = (ins 
    CIR_ScalarOrVectorOf<CIR_BoolType>:$condition, 
    CIR_AnyType:$true_value,
    CIR_AnyType:$false_value
  );
```

https://github.com/llvm/llvm-project/pull/170427
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to