(
&mut self,
ty: Self::Type,
ptr: Self::Value,
indices: &[Self::Value],
)
| 1306 | } |
| 1307 | |
| 1308 | fn inbounds_gep( |
| 1309 | &mut self, |
| 1310 | ty: Self::Type, |
| 1311 | ptr: Self::Value, |
| 1312 | indices: &[Self::Value], |
| 1313 | ) -> Self::Value { |
| 1314 | self.gep_help(ty, ptr, indices, true) |
| 1315 | } |
| 1316 | |
| 1317 | fn struct_gep(&mut self, ty: Self::Type, ptr: Self::Value, idx: u64) -> Self::Value { |
| 1318 | let pointee = match self.lookup_type(ptr.ty) { |
no test coverage detected