| 66 | class CGenerator final : Generator { |
| 67 | public: |
| 68 | CGenerator(std::ostream& output_file) : output_file(output_file) {}; |
| 69 | void process_binary_op(const BinaryOp& op, const InstructionContext& ctx) const final; |
| 70 | void process_unary_op(const UnaryOp& op, const InstructionContext& ctx) const final; |
| 71 | void process_store_op(const StoreOp& op, const InstructionContext& ctx) const final; |
nothing calls this directly
no outgoing calls
no test coverage detected