mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
* 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.
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
Sat Feb 5 08:03:41 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
|
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):
|
* remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
|
||||||
New functions.
|
New functions.
|
||||||
(mips_store_word): Change calling convention to return errors, and
|
(mips_store_word): Change calling convention to return errors, and
|
||||||
|
@ -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
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||||
|
|
||||||
/*
|
/* Changes for IBM AIX PS/2 by Minh Tran-Le (tranle@intellicorp.com). */
|
||||||
* Changes for IBM AIX PS/2 by Minh Tran-Le (tranle@intellicorp.com)
|
|
||||||
* Revision: 5-May-93 00:11:35
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef TM_I386AIX_H
|
#ifndef TM_I386AIX_H
|
||||||
#define TM_I386AIX_H 1
|
#define TM_I386AIX_H 1
|
||||||
@ -132,7 +129,7 @@ i387_to_double PARAMS ((char *, char *));
|
|||||||
#define REGISTER_CONVERT_TO_RAW(TYPE,REGNUM,FROM,TO) \
|
#define REGISTER_CONVERT_TO_RAW(TYPE,REGNUM,FROM,TO) \
|
||||||
{ \
|
{ \
|
||||||
double val = extract_floating ((FROM), TYPE_LENGTH (TYPE)); \
|
double val = extract_floating ((FROM), TYPE_LENGTH (TYPE)); \
|
||||||
double_to_i387((char *)&val, (TO)))
|
double_to_i387((char *)&val, (TO))) \
|
||||||
}
|
}
|
||||||
extern void
|
extern void
|
||||||
double_to_i387 PARAMS ((char *, char *));
|
double_to_i387 PARAMS ((char *, char *));
|
||||||
|
Reference in New Issue
Block a user