| 273 | } // namespace |
| 274 | |
| 275 | bool gen_op_def_c_header(raw_ostream& os, llvm::RecordKeeper& keeper) { |
| 276 | foreach_operator(keeper, [&](MgbOp& op) { |
| 277 | OpDefEmitter emitter(op, os); |
| 278 | emitter.emit_header(); |
| 279 | emitter.emit_tpl_spl(); |
| 280 | }); |
| 281 | return false; |
| 282 | } |
| 283 | |
| 284 | bool gen_op_def_c_body(raw_ostream& os, llvm::RecordKeeper& keeper) { |
| 285 | foreach_operator(keeper, [&](MgbOp& op) { |
nothing calls this directly
no test coverage detected