X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fblockframe.c;h=05c26bc2c2a208cbd97f4d7e141515705d790735;hb=7813437494ac39f3aef392d06ed5416e84fe386b;hp=09c3eed48db9d4d638befa8b39f84ed690ad10c7;hpb=67607e24d0413828acdfa9bc38f6fbac40b860b9;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/blockframe.c b/gdb/blockframe.c index 09c3eed48d..05c26bc2c2 100644 --- a/gdb/blockframe.c +++ b/gdb/blockframe.c @@ -429,11 +429,11 @@ find_gnu_ifunc_target_type (CORE_ADDR resolver_funaddr) /* If we found a pointer to function, then the resolved type is the type of the pointed-to function. */ - if (TYPE_CODE (resolver_ret_type) == TYPE_CODE_PTR) + if (resolver_ret_type->code () == TYPE_CODE_PTR) { struct type *resolved_type = TYPE_TARGET_TYPE (resolver_ret_type); - if (TYPE_CODE (check_typedef (resolved_type)) == TYPE_CODE_FUNC) + if (check_typedef (resolved_type)->code () == TYPE_CODE_FUNC) return resolved_type; } }