This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[RFA] irix5-nat.c: missing mips-tdep.h #include?


Hello,

GDB has been broken for a while on IRIX, because the compiler could not
find the definitions of mips_regsize() and mips_regnum(). This is
causing the build to fail because the code that uses it in irix5-nat.c
tries to deference the result. The compiler output is as follow:

    irix5-nat.c:58: warning: implicit declaration of function `mips_regsize'
    irix5-nat.c:64: warning: implicit declaration of function `mips_regnum'
    irix5-nat.c:64: invalid type argument of `->'
    irix5-nat.c:66: invalid type argument of `->'
    irix5-nat.c:68: invalid type argument of `->'
    irix5-nat.c:70: invalid type argument of `->'
    (etc...)

I suggest the following change to fix this problem:

2003-12-16  J. Brobecker  <brobecker@gnat.com>

        * irix5-nat.c: Include mips-tdep.h.

OK to apply?

Thanks,
-- 
Joel

Attachment: irix5-nat.c.diff
Description: Text document


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]