diff options
Diffstat (limited to 'src/format/mangling')
-rw-r--r-- | src/format/mangling/demangler.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/format/mangling/demangler.c b/src/format/mangling/demangler.c index d103550..410153e 100644 --- a/src/format/mangling/demangler.c +++ b/src/format/mangling/demangler.c @@ -94,6 +94,14 @@ static demangling_properties demanglers[/*DGT_COUNT*/] = { GBinRoutine *try_to_demangle_routine(const char *desc) { + GBinRoutine *result; /* Construction à remonter */ + + result = g_binary_routine_new(); + g_binary_routine_set_name(result, strdup(desc)); + + return result; + + #if 0 GBinRoutine *result; /* Construction à remonter */ DemanglerType i; /* Boucle de parcours */ |