(&self, ty: Self::Type)
| 128 | self.undef(ty) |
| 129 | } |
| 130 | fn const_poison(&self, ty: Self::Type) -> Self::Value { |
| 131 | // No distinction between undef and poison. |
| 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 | } |
nothing calls this directly
no test coverage detected