This commit is contained in:
William S. Moses 2025-08-22 06:32:28 -05:00
parent 641df18b4c
commit d1600dd465

View File

@ -464,9 +464,8 @@ bool mlir::affine::isValidSymbol(Value value, Region *region) {
return true;
auto *defOp = value.getDefiningOp();
if (!defOp) {
if (!defOp)
return false;
}
// Constant operation is ok.
Attribute operandCst;