mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
Use 0xffffffffffffffffLL to silence GCC 6 warning
GCC 6 warns: error: result of ‘4294967295ll << 32’ requires 65 bits to represent, but ‘long long int’ only has 64 bits [-Werror=shift-overflow=] on ((((bfd_signed_vma) 0xffffffff) << 32) | 0xffffffff). This patch replaces it with bfd_signed_vma) 0xffffffffffffffffLL. * stabs.c (parse_stab_range_type): Use 0xffffffffffffffffLL.
This commit is contained in:
parent
aff1a65ecb
commit
7cb9e39bd8
@ -1,3 +1,7 @@
|
||||
2015-07-24 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* stabs.c (parse_stab_range_type): Use 0xffffffffffffffffLL.
|
||||
|
||||
2015-07-22 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* readelf.c (dump_relocations): Show MIN_INT addends as negative.
|
||||
|
@ -1774,7 +1774,7 @@ parse_stab_range_type (void *dhandle, struct stab_handle *info, const char *type
|
||||
else if (n3 == (bfd_signed_vma) 0xffffffff)
|
||||
return debug_make_int_type (dhandle, 4, TRUE);
|
||||
#ifdef BFD64
|
||||
else if (n3 == ((((bfd_signed_vma) 0xffffffff) << 32) | 0xffffffff))
|
||||
else if (n3 == (bfd_signed_vma) 0xffffffffffffffffLL)
|
||||
return debug_make_int_type (dhandle, 8, TRUE);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user