Write the address of `data` into the data at offset `offset`.
(&mut self, offset: CodeOffset, data: ir::GlobalValue, addend: Addend)
| 155 | |
| 156 | /// Write the address of `data` into the data at offset `offset`. |
| 157 | pub fn write_data_addr(&mut self, offset: CodeOffset, data: ir::GlobalValue, addend: Addend) { |
| 158 | self.data_relocs.push((offset, data, addend)) |
| 159 | } |
| 160 | |
| 161 | /// An iterator over all relocations of the data object. |
| 162 | pub fn all_relocs<'a>( |