diff options
Diffstat (limited to 'gdb/i386-tdep.c')
-rw-r--r-- | gdb/i386-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index f385c20..710a01b 100644 --- a/gdb/i386-tdep.c +++ b/gdb/i386-tdep.c @@ -1857,7 +1857,7 @@ i386_next_regnum (int regnum) needs any special handling. */ static int -i386_convert_register_p (int regnum, struct type *type) +i386_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type) { int len = TYPE_LENGTH (type); @@ -1880,7 +1880,7 @@ i386_convert_register_p (int regnum, struct type *type) return 1; } - return i387_convert_register_p (regnum, type); + return i387_convert_register_p (gdbarch, regnum, type); } /* Read a value of type TYPE from register REGNUM in frame FRAME, and |