| 132 | } |
| 133 | |
| 134 | void Print(ReturnOp op, OpAsmPrinter* p) { |
| 135 | *p << op.getOperationName(); |
| 136 | if (op.getNumOperands() > 0) { |
| 137 | *p << ' '; |
| 138 | p->printOperands(op.getOperands()); |
| 139 | *p << " : "; |
| 140 | interleaveComma(op.getOperandTypes(), *p); |
| 141 | } |
| 142 | } |
| 143 | } // anonymous namespace |
| 144 | |
| 145 | //===----------------------------------------------------------------------===// |
nothing calls this directly
no test coverage detected