| 237 | } |
| 238 | |
| 239 | void Print(GraphOp graph, OpAsmPrinter &p) { |
| 240 | p << graph.getOperationName(); |
| 241 | p.printRegion(graph.getOperation()->getRegion(0)); |
| 242 | p.printOptionalAttrDict(graph.getAttrs()); |
| 243 | } |
| 244 | |
| 245 | ParseResult ParseGraphOp(OpAsmParser &parser, OperationState &result) { |
| 246 | llvm::SMLoc loc = parser.getCurrentLocation(); |
nothing calls this directly
no test coverage detected