(header: &mut ModuleHeader)
| 80 | } |
| 81 | |
| 82 | fn id(header: &mut ModuleHeader) -> Word { |
| 83 | let result = header.bound; |
| 84 | header.bound += 1; |
| 85 | result |
| 86 | } |
| 87 | |
| 88 | fn apply_rewrite_rules(rewrite_rules: &FxHashMap<Word, Word>, blocks: &mut [Block]) { |
| 89 | let apply = |inst: &mut Instruction| { |
no outgoing calls
no test coverage detected