diff options
author | Jim Wilson <wilson@tuliptree.org> | 1996-11-12 23:33:32 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 1996-11-12 23:33:32 +0000 |
commit | 119dfbb7c16c594e26b4745e5efaf836b48d8c1b (patch) | |
tree | 5419bf9c17f940431f9c133e1d977c1720324c0c /gdb/convex-xdep.c | |
parent | cf13e3fc30bee23f8c794c0dcd7924733e2e1d3e (diff) | |
download | gdb-119dfbb7c16c594e26b4745e5efaf836b48d8c1b.zip gdb-119dfbb7c16c594e26b4745e5efaf836b48d8c1b.tar.gz gdb-119dfbb7c16c594e26b4745e5efaf836b48d8c1b.tar.bz2 |
Patches to add Irix6 host support.
Diffstat (limited to 'gdb/convex-xdep.c')
-rw-r--r-- | gdb/convex-xdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/convex-xdep.c b/gdb/convex-xdep.c index 9a3d995..8bfc0d8 100644 --- a/gdb/convex-xdep.c +++ b/gdb/convex-xdep.c @@ -193,7 +193,7 @@ static struct type *vector_type (); static long *read_vector_register (); static long *read_vector_register_1 (); static void write_vector_register (); -static unsigned LONGEST read_comm_register (); +static ULONGEST read_comm_register (); static void write_comm_register (); static void convex_cont_command (); static void thread_continue (); @@ -442,7 +442,7 @@ read_vector_register_1 (reg) static void write_vector_register (reg, element, val) int reg, element; - unsigned LONGEST val; + ULONGEST val; { if (have_inferior_p ()) { @@ -481,7 +481,7 @@ write_vector_register (reg, element, val) /* Return the contents of communication register NUM. */ -static unsigned LONGEST +static ULONGEST read_comm_register (num) int num; { @@ -503,7 +503,7 @@ read_comm_register (num) static void write_comm_register (num, val) int num; - unsigned LONGEST val; + ULONGEST val; { if (have_inferior_p ()) { |