[SVE] Fix warnings in SelectInst::areInvalidOperands
authorDavid Sherwood <david.sherwood@arm.com>
Wed, 27 May 2020 14:21:48 +0000 (15:21 +0100)
committerDavid Sherwood <david.sherwood@arm.com>
Fri, 29 May 2020 06:50:47 +0000 (07:50 +0100)
We should be comparing the element counts rather than the
numbers of elements.

Differential Revision: https://reviews.llvm.org/D80634

llvm/lib/IR/Instructions.cpp
llvm/test/CodeGen/AArch64/sve-bad-select.ll [new file with mode: 0644]

index 957db32..3c7b795 100644 (file)
@@ -81,7 +81,7 @@ const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
     VectorType *ET = dyn_cast<VectorType>(Op1->getType());
     if (!ET)
       return "selected values for vector select must be vectors";
-    if (ET->getNumElements() != VT->getNumElements())
+    if (ET->getElementCount() != VT->getElementCount())
       return "vector select requires selected vectors to have "
                    "the same vector length as select condition";
   } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
diff --git a/llvm/test/CodeGen/AArch64/sve-bad-select.ll b/llvm/test/CodeGen/AArch64/sve-bad-select.ll
new file mode 100644 (file)
index 0000000..2dbc4ea
--- /dev/null
@@ -0,0 +1,10 @@
+; RUN: not llc -mtriple=aarch64-linux-gnu -mattr=+sve < %s 2>&1 | FileCheck %s
+
+define <vscale x 16 x i8> @badsel1_nxv16i8(<16 x i1> %p,
+                                           <vscale x 16 x i8> %dst,
+                                           <vscale x 16 x i8> %a) {
+  %sel = select <16 x i1> %p, <vscale x 16 x i8> %a, <vscale x 16 x i8> %dst
+  ret <vscale x 16 x i8> %sel
+}
+
+; CHECK: error: vector select requires selected vectors to have the same vector length as select condition