| 104 | } |
| 105 | |
| 106 | Expr NewIntConst(ExprId id, int64_t value) { |
| 107 | Constant constant; |
| 108 | constant.set_int_value(value); |
| 109 | return NewConst(id, std::move(constant)); |
| 110 | } |
| 111 | |
| 112 | Expr NewUintConst(ExprId id, uint64_t value) { |
| 113 | Constant constant; |
no outgoing calls
no test coverage detected