diff options
author | Jim Wilson <wilson@tuliptree.org> | 1996-11-19 00:04:37 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 1996-11-19 00:04:37 +0000 |
commit | 692a601fb7311430c4b12a47c2dee7f12244171b (patch) | |
tree | 298965c7114582b5130bc93f37e9201bc82a9749 /gdb/config/mips | |
parent | 753b59c2701715aa208dd7c7d5a559d2f2f05d70 (diff) | |
download | gdb-692a601fb7311430c4b12a47c2dee7f12244171b.zip gdb-692a601fb7311430c4b12a47c2dee7f12244171b.tar.gz gdb-692a601fb7311430c4b12a47c2dee7f12244171b.tar.bz2 |
Fix Irix6 host build problem.
* config/mips/tm-mips.h (FIX_CALL_DUMMY): Change unsigned LONGEST
to ULONGEST.
Diffstat (limited to 'gdb/config/mips')
-rw-r--r-- | gdb/config/mips/tm-mips.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index 7ba58db..b31a64f 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -427,9 +427,9 @@ extern void mips_pop_frame PARAMS ((void)); it will be expecting a float argument in a float \ register. */ \ store_unsigned_integer (dummyname + 4 * 4, 4, \ - (unsigned LONGEST) 0); \ + (ULONGEST) 0); \ store_unsigned_integer (dummyname + 6 * 4, 4, \ - (unsigned LONGEST) 0); \ + (ULONGEST) 0); \ } \ else if (TARGET_BYTE_ORDER == BIG_ENDIAN \ && ! GDB_TARGET_IS_MIPS64) \ |