diff options
author | Alan Modra <amodra@gmail.com> | 2000-07-10 14:51:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-07-10 14:51:04 +0000 |
commit | 3c9f43b196df798c2f2e6556a220caceaa96edea (patch) | |
tree | ccf09667a77d3bdbac08d246759868ee49d8e853 /binutils/stabs.c | |
parent | 8db62801bd2efe1b9e6493b1a4ecadf605791b99 (diff) | |
download | gdb-3c9f43b196df798c2f2e6556a220caceaa96edea.zip gdb-3c9f43b196df798c2f2e6556a220caceaa96edea.tar.gz gdb-3c9f43b196df798c2f2e6556a220caceaa96edea.tar.bz2 |
Warning fixes.
Diffstat (limited to 'binutils/stabs.c')
-rw-r--r-- | binutils/stabs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/stabs.c b/binutils/stabs.c index 5f60035..90f7666 100644 --- a/binutils/stabs.c +++ b/binutils/stabs.c @@ -1,5 +1,5 @@ /* stabs.c -- Parse stabs debugging information - Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. Written by Ian Lance Taylor <ian@cygnus.com>. This file is part of GNU Binutils. @@ -1822,7 +1822,7 @@ parse_stab_range_type (dhandle, info, typename, pp, typenums) else if (n3 == (bfd_signed_vma) 0xffffffff) return debug_make_int_type (dhandle, 4, true); #ifdef BFD64 - else if (n3 == ((((bfd_vma) 0xffffffff) << 32) | 0xffffffff)) + else if (n3 == ((((bfd_signed_vma) 0xffffffff) << 32) | 0xffffffff)) return debug_make_int_type (dhandle, 8, true); #endif } |