[DenseElementAttr] Silence warning in -DNDEBUG builds. NFC.
authorBenjamin Kramer <benny.kra@googlemail.com>
Thu, 12 May 2022 15:59:39 +0000 (17:59 +0200)
committerBenjamin Kramer <benny.kra@googlemail.com>
Thu, 12 May 2022 15:59:39 +0000 (17:59 +0200)
mlir/lib/IR/BuiltinAttributes.cpp

index 76bb3a7..a9ba366 100644 (file)
@@ -1101,6 +1101,7 @@ DenseElementsAttr DenseIntOrFPElementsAttr::getRawComplex(ShapedType type,
       dataEltSize / 2, isInt, isSigned));
 
   int64_t numElements = data.size() / dataEltSize;
+  (void)numElements;
   assert(numElements == 1 || numElements == type.getNumElements());
   return getRaw(type, data);
 }