diff options
Diffstat (limited to 'gdb/i386-windows-tdep.c')
-rw-r--r-- | gdb/i386-windows-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-windows-tdep.c b/gdb/i386-windows-tdep.c index f596539..b2db9bc 100644 --- a/gdb/i386-windows-tdep.c +++ b/gdb/i386-windows-tdep.c @@ -219,7 +219,7 @@ i386_windows_push_dummy_call (struct gdbarch *gdbarch, struct value *function, /* read_subroutine_type sets for non-static member functions the artificial flag of the first parameter ('this' pointer). */ if (type->code () == TYPE_CODE_METHOD - && TYPE_NFIELDS (type) > 0 + && type->num_fields () > 0 && TYPE_FIELD_ARTIFICIAL (type, 0) && TYPE_FIELD_TYPE (type, 0)->code () == TYPE_CODE_PTR) thiscall = 1; |