Broken, incomplete, but need to move forward with rewrite.
This commit is contained in:
@@ -105,6 +105,11 @@ FunctionBlock* FunctionSymbol::SplitBlock(uint32_t address) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void FunctionSymbol::AddCall(FunctionSymbol* source, FunctionSymbol* target) {
|
||||
source->outgoing_calls.push_back(FunctionCall(0, source, target));
|
||||
target->incoming_calls.push_back(FunctionCall(0, source, target));
|
||||
}
|
||||
|
||||
|
||||
VariableSymbol::VariableSymbol() :
|
||||
Symbol(Variable),
|
||||
|
||||
Reference in New Issue
Block a user