Closed as not planned
Description
Description
The process_bb
function in mini-llvm.c
contains about 80 switch statements within switch (ins->opcode) {
. The goal is to reduce code redundancy by introducing helper functions. To achieve this, the first step is to identify patterns and common operations within the switch cases. Each pattern should be encapsulated into a helper function.