(func: &Function)
| 110 | |
| 111 | impl RemoveInst { |
| 112 | fn new(func: &Function) -> Self { |
| 113 | let first_block = func.layout.entry_block().unwrap(); |
| 114 | let first_inst = func.layout.first_inst(first_block).unwrap(); |
| 115 | Self { |
| 116 | block: first_block, |
| 117 | inst: first_inst, |
| 118 | } |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | impl Mutator for RemoveInst { |
nothing calls this directly
no test coverage detected