diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/symbol.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/format/symbol.c b/src/format/symbol.c index 898ce9a..789dd86 100644 --- a/src/format/symbol.c +++ b/src/format/symbol.c @@ -645,6 +645,8 @@ GBinRoutine *g_binary_symbol_get_routine(const GBinSymbol *symbol) { /* TODO : rajouter des assert() sur le type de symbole */ + /* TODO : ref() */ + return symbol->extra.routine; } @@ -666,6 +668,8 @@ GArchInstruction *g_binary_symbol_get_instruction(const GBinSymbol *symbol) { /* TODO : rajouter des assert() sur le type de symbole */ + /* TODO : ref() */ + return symbol->extra.instr; } |