improved CFG functions style
This commit is contained in:
@@ -39,9 +39,8 @@ namespace SAPFOR
|
||||
BasicBlock(IR_Block* item);
|
||||
BasicBlock(const BasicBlock& copyFrom);
|
||||
|
||||
void addInstructionBeforeInstruction(IR_Block* item, Instruction* istruction);
|
||||
void addInstructionInFront(IR_Block* item);
|
||||
void addInstruction(IR_Block* item);
|
||||
void addInstructionBefore(IR_Block* item, Instruction* istruction);
|
||||
void addInstruction(IR_Block* item, bool pushFront = false);
|
||||
void addPrev(BasicBlock* prev_) { prev.push_back(prev_); }
|
||||
void addNext(BasicBlock* next_) { next.push_back(next_); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user