aboutsummaryrefslogtreecommitdiff
path: root/gdb/f-exp.y
diff options
context:
space:
mode:
authorJim Wilson <wilson@tuliptree.org>1996-11-12 23:33:32 +0000
committerJim Wilson <wilson@tuliptree.org>1996-11-12 23:33:32 +0000
commit119dfbb7c16c594e26b4745e5efaf836b48d8c1b (patch)
tree5419bf9c17f940431f9c133e1d977c1720324c0c /gdb/f-exp.y
parentcf13e3fc30bee23f8c794c0dcd7924733e2e1d3e (diff)
downloadfsf-binutils-gdb-119dfbb7c16c594e26b4745e5efaf836b48d8c1b.zip
fsf-binutils-gdb-119dfbb7c16c594e26b4745e5efaf836b48d8c1b.tar.gz
fsf-binutils-gdb-119dfbb7c16c594e26b4745e5efaf836b48d8c1b.tar.bz2
Patches to add Irix6 host support.
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r--gdb/f-exp.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y
index caf0ca6..4a1f747 100644
--- a/gdb/f-exp.y
+++ b/gdb/f-exp.y
@@ -643,7 +643,7 @@ parse_number (p, len, parsed_float, putithere)
register int base = input_radix;
int unsigned_p = 0;
int long_p = 0;
- unsigned LONGEST high_bit;
+ ULONGEST high_bit;
struct type *signed_type;
struct type *unsigned_type;
@@ -745,13 +745,13 @@ parse_number (p, len, parsed_float, putithere)
&& ((n >> 2) >> (TARGET_INT_BIT-2))) /* Avoid shift warning */
|| long_p)
{
- high_bit = ((unsigned LONGEST)1) << (TARGET_LONG_BIT-1);
+ high_bit = ((ULONGEST)1) << (TARGET_LONG_BIT-1);
unsigned_type = builtin_type_unsigned_long;
signed_type = builtin_type_long;
}
else
{
- high_bit = ((unsigned LONGEST)1) << (TARGET_INT_BIT-1);
+ high_bit = ((ULONGEST)1) << (TARGET_INT_BIT-1);
unsigned_type = builtin_type_unsigned_int;
signed_type = builtin_type_int;
}