From: Jim Kingdon Date: Thu, 3 Feb 1994 03:58:26 +0000 (+0000) Subject: * valarith.c (value_binop): Figure out type ourself based on X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1de1647fea8b7509316395281b7fe9fcc546078;p=binutils-gdb.git * valarith.c (value_binop): Figure out type ourself based on sizeof (LONGEST) rather than relying on BUILTIN_TYPE_LONGEST. The point is that we don't depend on CC_HAS_LONG_LONG anymore. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 926d98a8e00..dcd68d61a73 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -16,10 +16,9 @@ Wed Feb 2 11:16:45 1994 Jim Kingdon (kingdon@lioth.cygnus.com) longest_int and longest_unsigned_int. * value.h (struct value): Just align to LONGEST, rather than worrying about CC_HAS_LONG_LONG. - * valarith.c (value_binop, _initialize_valarith): Figure out type - ourself based on sizeof (LONGEST) rather than relying on - BUILTIN_TYPE_LONGEST. The point is that we don't depend on - CC_HAS_LONG_LONG anymore. + * valarith.c (value_binop): Figure out type ourself based on + sizeof (LONGEST) rather than relying on BUILTIN_TYPE_LONGEST. The + point is that we don't depend on CC_HAS_LONG_LONG anymore. * valprint.c (val_print_type_code_int): Just call extract_unsigned_integer directly, rather than going through unpack_long.