X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9122d33957bd260d3d5296bc250674d9a4eb4d40..7ef55d47978f2f2ef20bd27c85881faa99147034:/src/mc/mc_hash.c diff --git a/src/mc/mc_hash.c b/src/mc/mc_hash.c index 4e8c536f39..533548bff4 100644 --- a/src/mc/mc_hash.c +++ b/src/mc/mc_hash.c @@ -197,7 +197,7 @@ static void mc_hash_object_globals(mc_hash_t *hash, mc_hashing_state* state, mc_ continue; } - dw_type_t type = xbt_dict_get_or_null(info->types, variable->type_origin); + dw_type_t type = variable->type; if(type==NULL) { // Nothing continue; @@ -237,7 +237,7 @@ static void mc_hash_stack_frame( void* variable_address = (void*) MC_dwarf_resolve_location(unw_cursor, variable->location, frame_pointer); - dw_type_t type = xbt_dict_get_or_null(info->types, variable->type_origin); + dw_type_t type = variable->type; if(type==NULL) { XBT_DEBUG("Hash local variable %s without loctypeation", variable->name); continue;