(&mut self, ty: Self::Type, ptr: Self::Value)
| 1115 | } |
| 1116 | |
| 1117 | fn volatile_load(&mut self, ty: Self::Type, ptr: Self::Value) -> Self::Value { |
| 1118 | // TODO: Implement this |
| 1119 | let result = self.load(ty, ptr, Align::from_bytes(0).unwrap()); |
| 1120 | self.zombie(result.def(self), "volatile load is not supported yet"); |
| 1121 | result |
| 1122 | } |
| 1123 | |
| 1124 | fn atomic_load( |
| 1125 | &mut self, |
no test coverage detected