diff --git a/lib/Dialect/Seq/SeqOps.cpp b/lib/Dialect/Seq/SeqOps.cpp index 0f689da603..a568bc18b6 100644 --- a/lib/Dialect/Seq/SeqOps.cpp +++ b/lib/Dialect/Seq/SeqOps.cpp @@ -250,18 +250,14 @@ ParseResult parseFIFOAEThreshold(OpAsmParser &parser, IntegerAttr &threshold, void printFIFOAFThreshold(OpAsmPrinter &p, Operation *op, IntegerAttr threshold, Type outputFlagType) { - if (threshold) { - p << "almost_full" - << " " << threshold.getInt(); - } + if (threshold) + p << "almost_full" << " " << threshold.getInt(); } void printFIFOAEThreshold(OpAsmPrinter &p, Operation *op, IntegerAttr threshold, Type outputFlagType) { - if (threshold) { - p << "almost_empty" - << " " << threshold.getInt(); - } + if (threshold) + p << "almost_empty" << " " << threshold.getInt(); } void FIFOOp::getAsmResultNames(OpAsmSetValueNameFn setNameFn) {