Set the flag to request a disassembly when compiling with a `MachBackend` backend.
(&mut self, val: bool)
| 106 | /// Set the flag to request a disassembly when compiling with a |
| 107 | /// `MachBackend` backend. |
| 108 | pub fn set_disasm(&mut self, val: bool) { |
| 109 | self.want_disasm = val; |
| 110 | } |
| 111 | |
| 112 | /// Compile the function, and emit machine code into a `Vec<u8>`. |
| 113 | #[deprecated = "use Context::compile"] |