Allocate and compute the control flow graph for `func`.
(func: &Function)
| 96 | |
| 97 | /// Allocate and compute the control flow graph for `func`. |
| 98 | pub fn with_function(func: &Function) -> Self { |
| 99 | let mut cfg = Self::new(); |
| 100 | cfg.compute(func); |
| 101 | cfg |
| 102 | } |
| 103 | |
| 104 | /// Compute the control flow graph of `func`. |
| 105 | /// |