[Mlir-commits] [mlir] [mlir] Add loop bounds normalization pass (PR #93781)

Abhishek Varma llvmlistbot at llvm.org
Thu May 30 04:23:40 PDT 2024


================
@@ -245,8 +245,6 @@ void Operation::setOperands(ValueRange operands) {
 /// than the range pointed to by 'start'+'length'.
 void Operation::setOperands(unsigned start, unsigned length,
                             ValueRange operands) {
-  assert((start + length) <= getNumOperands() &&
-         "invalid operand range specified");
----------------
Abhishek-Varma wrote:

Removing an assert, especially at the core doesn't look safe - can you state the reason for doing so? I tried looking at the instances where you've tried using it, but wasn't able to reason that out.

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


More information about the Mlir-commits mailing list