Write `func` to `w` as equivalent text. Use `isa` to emit ISA-dependent annotations.
(w: &mut dyn Write, func: &Function)
| 156 | /// Write `func` to `w` as equivalent text. |
| 157 | /// Use `isa` to emit ISA-dependent annotations. |
| 158 | pub fn write_function(w: &mut dyn Write, func: &Function) -> fmt::Result { |
| 159 | decorate_function(&mut PlainWriter, w, func) |
| 160 | } |
| 161 | |
| 162 | /// Create a reverse-alias map from a value to all aliases having that value as a direct target |
| 163 | fn alias_map(func: &Function) -> SecondaryMap<Value, Vec<Value>> { |
no test coverage detected