Translate logic and branching operations
file: ir_to_riscv_branching_logic.c
Branching operations should look for ir->entries[quad->target].label
.
This value should be the riscv label we want to branch/jump to.
Since if(float != float) goto label
does not exist in rars, I recommend you use if(float > float) goto label
followed by if(float < float) goto label
Edited by HARDY FLORENT