diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-02-03 03:58:26 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-02-03 03:58:26 +0000 |
commit | b1de1647fea8b7509316395281b7fe9fcc546078 (patch) | |
tree | b466ae5650b5f5d63c250d9e59ef01526ef39c9b /gdb | |
parent | ce855594950709b54073697eff14f8866ff8a2f7 (diff) | |
download | gdb-b1de1647fea8b7509316395281b7fe9fcc546078.zip gdb-b1de1647fea8b7509316395281b7fe9fcc546078.tar.gz gdb-b1de1647fea8b7509316395281b7fe9fcc546078.tar.bz2 |
* 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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 926d98a..dcd68d6 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. |