This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 74be0bdc3b Automatic date update in version.in new 701000146a Target FP: Introduce target-float.{c,h} new f69fdf9bca Target FP: Add string routines to target-float.{c,h} new 50637b26f8 Target FP: Add conversion routines to target-float.{c,h} new 66c02b9ed1 Target FP: Add binop and compare routines to target-float.{c,h} new 50eff16b85 Target FP: Perform Ada fixed-point scaling in target format new 14ad931172 Target FP: Handle interfaces to scripting languages new 3b2ca8248c Target FP: Remove convert_typed_floating from tdep files new b07e9c466e Target FP: Remove unused floating-point routines new 1cfb73dbb7 Target FP: Merge doublest.c and dfp.c into target-float.c
The 9 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/ChangeLog | 236 +++++++ gdb/Makefile.in | 15 +- gdb/ada-lang.c | 109 ++- gdb/ada-lang.h | 6 +- gdb/ada-typeprint.c | 20 +- gdb/ada-valprint.c | 14 +- gdb/arm-tdep.c | 8 +- gdb/dfp.c | 413 ----------- gdb/dfp.h | 55 -- gdb/doublest.c | 989 -------------------------- gdb/doublest.h | 92 --- gdb/gdbarch-selftests.c | 6 +- gdb/gdbtypes.c | 10 + gdb/gdbtypes.h | 2 + gdb/guile/scm-math.c | 20 +- gdb/guile/scm-value.c | 23 +- gdb/i386-tdep.c | 6 +- gdb/i387-tdep.c | 11 +- gdb/ia64-tdep.c | 20 +- gdb/m68k-tdep.c | 9 +- gdb/mips-tdep.c | 15 +- gdb/parse.c | 11 +- gdb/ppc-sysv-tdep.c | 25 +- gdb/printcmd.c | 11 +- gdb/python/py-value.c | 21 +- gdb/rs6000-aix-tdep.c | 8 +- gdb/rs6000-lynx178-tdep.c | 8 +- gdb/rs6000-tdep.c | 10 +- gdb/sh-tdep.c | 10 +- gdb/sh64-tdep.c | 21 +- gdb/stabsread.c | 10 +- gdb/target-float.c | 1721 +++++++++++++++++++++++++++++++++++++++++++++ gdb/target-float.h | 61 ++ gdb/valarith.c | 285 ++------ gdb/valops.c | 46 +- gdb/valprint.c | 16 +- gdb/value.c | 131 +--- gdb/value.h | 11 +- 38 files changed, 2359 insertions(+), 2126 deletions(-) delete mode 100644 gdb/dfp.c delete mode 100644 gdb/dfp.h delete mode 100644 gdb/doublest.c delete mode 100644 gdb/doublest.h create mode 100644 gdb/target-float.c create mode 100644 gdb/target-float.h