* config/i386/tm-i386aix.h (REGISTER_CONVERT_TO_RAW): Add missing
authorJim Kingdon <jkingdon@engr.sgi.com>
Sat, 5 Feb 1994 20:38:12 +0000 (20:38 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Sat, 5 Feb 1994 20:38:12 +0000 (20:38 +0000)
backslash.
* i386-tdep.c (i386_extract_return_value): Pass TYPE_LENGTH (type)
to store_floating, not nonexistent variable len.

gdb/ChangeLog
gdb/config/i386/tm-i386aix.h

index 5c1225f81100330947f0a817883e295b8c30c7e6..c5b55cc1997e3e0b8473b63924a6789f88148b28 100644 (file)
@@ -1,5 +1,10 @@
 Sat Feb  5 08:03:41 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * config/i386/tm-i386aix.h (REGISTER_CONVERT_TO_RAW): Add missing
+       backslash.
+       * i386-tdep.c (i386_extract_return_value): Pass TYPE_LENGTH (type)
+       to store_floating, not nonexistent variable len.
+
        * remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
        New functions.
        (mips_store_word): Change calling convention to return errors, and
index 4e6b2df48fb98018f8ed2fb2da9992ac7fda0005..7847874616542ef0811457a0583598e8eda196b8 100644 (file)
@@ -17,10 +17,7 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-/*
- * Changes for IBM AIX PS/2 by Minh Tran-Le (tranle@intellicorp.com)
- * Revision:    5-May-93 00:11:35
- */
+/* Changes for IBM AIX PS/2 by Minh Tran-Le (tranle@intellicorp.com).  */
 
 #ifndef TM_I386AIX_H
 #define TM_I386AIX_H 1
@@ -132,7 +129,7 @@ i387_to_double PARAMS ((char *, char *));
 #define REGISTER_CONVERT_TO_RAW(TYPE,REGNUM,FROM,TO) \
 { \
   double val = extract_floating ((FROM), TYPE_LENGTH (TYPE)); \
-  double_to_i387((char *)&val, (TO)))
+  double_to_i387((char *)&val, (TO))) \
 }
 extern void
 double_to_i387 PARAMS ((char *, char *));
This page took 0.030927 seconds and 4 git commands to generate.