diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-12-18 21:36:14 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-12-18 21:36:14 (GMT) |
commit | d50544a3de540727137f2b13010ca4450f8ea10f (patch) | |
tree | 05e4ad65c25570016d5732f425a9eff2f4117d34 /src/analysis/decomp | |
parent | b0bcf250999b2242019f137e38f52390a86e71cd (diff) |
Used a fast sorted array to track shared instances instead of a simple hash table.
Diffstat (limited to 'src/analysis/decomp')
-rw-r--r-- | src/analysis/decomp/il.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/decomp/il.c b/src/analysis/decomp/il.c index bc56e0c..ad6f702 100644 --- a/src/analysis/decomp/il.c +++ b/src/analysis/decomp/il.c @@ -538,7 +538,7 @@ static void build_ite_branches(GITEInstruction *decomp, GFlowBlock *block, GDecC sub_parent = g_instr_block_get_links_block(G_INSTR_BLOCK(block)); sub_shared = g_hash_table_new_full((GHashFunc)g_arch_register_hash, - (GEqualFunc)g_arch_register_equal, + (GEqualFunc)NULL,//g_arch_register_equal, g_object_unref, g_object_unref); true_dinstr = NULL; |