Returns whether unused local memory allocation optimization is enabled.
(&self)
| 88 | |
| 89 | /// Returns whether unused local memory allocation optimization is enabled. |
| 90 | pub const fn optimize_local_memory_allocation(&self) -> bool { |
| 91 | self.optimize_local_memory_allocation |
| 92 | } |
| 93 | |
| 94 | /// Enable or disable the peephole rewrite optimizer. |
| 95 | pub const fn with_rewrite_optimization(mut self, enabled: bool) -> Self { |