* configure.in: Explicitly `exit 0' for broken shells.
authorPeter Schauer <Peter.Schauer@mytum.de>
Sat, 2 Sep 1995 13:48:16 +0000 (13:48 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Sat, 2 Sep 1995 13:48:16 +0000 (13:48 +0000)
* configure:  Rebuilt.

* symtab.c (list_symbols):  Add missing blank after
`<function, no debug info>' output.

* valops.c (value_assign):  Handle truncation when assigning
to bitfields. Use value_copy to construct the return value
from toval.
* values.c (value_copy):  Copy VALUE_FRAME and VALUE_OPTIMIZED_OUT.

gdb/ChangeLog
gdb/configure
gdb/configure.in
gdb/values.c

index b48c6a2b039ff5c078868fe8453a55a878ad40f7..e4a16ce8ccf378b135cac398688cad1c9b06063e 100644 (file)
@@ -1,3 +1,16 @@
+Sat Sep  2 06:41:26 1995  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+       * configure.in:  Explicitly `exit 0' for broken shells.
+       * configure:  Rebuilt.
+
+       * symtab.c (list_symbols):  Add missing blank after
+       `<function, no debug info>' output.
+
+       * valops.c (value_assign):  Handle truncation when assigning
+       to bitfields. Use value_copy to construct the return value
+       from toval.
+       * values.c (value_copy):  Copy VALUE_FRAME and VALUE_OPTIMIZED_OUT.
+
 Fri Sep  1 08:25:50 1995  James G. Smith  <jsmith@beauty.cygnus.com>
 
        * configure (mips64*vr4300*-*-elf): Support added.
index 528ee649bdfdf05afbb5e0c9a68c0d7389f3e6b3..77a2bb1807d47c9644a891d56f3dbb977626c5bb 100755 (executable)
@@ -2643,3 +2643,5 @@ if test "$no_recursion" != yes; then
   done
 fi
 
+
+exit 0
index 6fb7e4a1fed5cca25f2804e81e9395c9d9044baa..6aec57688d70ad74b5d21ce0c505b4cc595d1e31 100644 (file)
@@ -528,3 +528,5 @@ gdb_host_cpu=$gdb_host_cpu
 gdb_target_cpu=$gdb_target_cpu
 nativefile=$nativefile
 ])
+
+exit 0
index 9a2301e0894f791fade2a51e047177ea2f24f40d..33db594dfc5aa79b2077aa8c506f76d1b6772026 100644 (file)
@@ -228,8 +228,10 @@ value_copy (arg)
   VALUE_OFFSET (val) = VALUE_OFFSET (arg);
   VALUE_BITPOS (val) = VALUE_BITPOS (arg);
   VALUE_BITSIZE (val) = VALUE_BITSIZE (arg);
+  VALUE_FRAME (val) = VALUE_FRAME (arg);
   VALUE_REGNO (val) = VALUE_REGNO (arg);
   VALUE_LAZY (val) = VALUE_LAZY (arg);
+  VALUE_OPTIMIZED_OUT (val) = VALUE_OPTIMIZED_OUT (arg);
   val->modifiable = arg->modifiable;
   if (!VALUE_LAZY (val))
     {
This page took 0.033112 seconds and 4 git commands to generate.