(&self, t: Self::Type, i: i64)
| 132 | self.const_undef(ty) |
| 133 | } |
| 134 | fn const_int(&self, t: Self::Type, i: i64) -> Self::Value { |
| 135 | self.constant_int(t, i as u64) |
| 136 | } |
| 137 | fn const_uint(&self, t: Self::Type, i: u64) -> Self::Value { |
| 138 | self.constant_int(t, i) |
| 139 | } |
nothing calls this directly
no test coverage detected