diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/elf/helper_x86.c | 6 | ||||
-rw-r--r-- | src/format/symbol.c | 1 | ||||
-rw-r--r-- | src/format/symbol.h | 1 |
3 files changed, 3 insertions, 5 deletions
diff --git a/src/format/elf/helper_x86.c b/src/format/elf/helper_x86.c index 596911f..826ac40 100644 --- a/src/format/elf/helper_x86.c +++ b/src/format/elf/helper_x86.c @@ -140,7 +140,7 @@ bool load_elf_x86_relocated_symbols(GElfFormat *format, const elf_shdr *relxxx, name = "unknown"; } - symbol = g_binary_symbol_new(STP_FUNCTION); + symbol = g_binary_symbol_new(STP_ROUTINE); g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol); break; @@ -323,7 +323,7 @@ void translate_exe_elf_relocations(GElfFormat *format, GArchInstruction **instru /* Symbole uniquement */ - symbol = g_binary_symbol_new(STP_FUNCTION); + symbol = g_binary_symbol_new(STP_ROUTINE); g_binary_symbol_attach_routine(symbol, routine); @@ -431,7 +431,7 @@ void translate_dyn_elf_relocations(GElfFormat *format, GArchInstruction **instru /* Symbole uniquement */ - symbol = g_binary_symbol_new(STP_FUNCTION); + symbol = g_binary_symbol_new(STP_ROUTINE); g_binary_symbol_attach_routine(symbol, routine); diff --git a/src/format/symbol.c b/src/format/symbol.c index 434054a..898ce9a 100644 --- a/src/format/symbol.c +++ b/src/format/symbol.c @@ -372,7 +372,6 @@ bool g_binary_symbol_is_block_start(GBinSymbol *symbol) { case STP_ROUTINE: case STP_OBJECT: - case STP_FUNCTION: case STP_ENTRY_POINT: case STP_STRING: case STP_RO_STRING: diff --git a/src/format/symbol.h b/src/format/symbol.h index 4a48cf8..2b8abf8 100644 --- a/src/format/symbol.h +++ b/src/format/symbol.h @@ -46,7 +46,6 @@ typedef enum _SymbolType STP_ROUTINE, /* Simple morceau de code */ STP_CODE_LABEL, /* Renvoi au sein de code */ STP_OBJECT, /* Objet quelconque */ - STP_FUNCTION, /* Simple morceau de code */ STP_ENTRY_POINT, /* Morceau de code en entrée */ STP_STRING, /* Chaîne de caractères */ STP_RO_STRING, /* Chaîne de caractères */ |