Commit 2996d8c3 by Nick Clifton Committed by Nick Clifton

rx-lib.h: Always restrict doubles to the SF type when 64-bit doubles are not enabled.

	* config/rx/rx-lib.h: Always restrict doubles to the SF type when
	64-bit doubles are not enabled.
	* config/rx/rx-abi.h: Fix extraneous renaming of the floatsisf
	and floatunsisf functions.

From-SVN: r179314
parent 206c3e10
2011-09-28 Nick Clifton <nickc@redhat.com>
* config/rx/rx-lib.h: Always restrict doubles to the SF type when
64-bit doubles are not enabled.
* config/rx/rx-abi.h: Fix extraneous renaming of the floatsisf
and floatunsisf functions.
2011-09-13 Paul Brook <paul@codesourcery.com> 2011-09-13 Paul Brook <paul@codesourcery.com>
* config.host (tic6x-*-*): Add c6x/t-c6x-elf. Set unwind_header. * config.host (tic6x-*-*): Add c6x/t-c6x-elf. Set unwind_header.
......
...@@ -80,15 +80,6 @@ ...@@ -80,15 +80,6 @@
#endif #endif
#ifdef L_si_to_sf
#define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (floatsisf, CONV32sf)
#endif
#ifdef L_usi_to_sf
#define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (floatunsisf, CONV32uf)
#endif
#ifdef __RX_64BIT_DOUBLES__ #ifdef __RX_64BIT_DOUBLES__
...@@ -176,6 +167,14 @@ ...@@ -176,6 +167,14 @@
#define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (negdf2, NEGd) #define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (negdf2, NEGd)
#endif #endif
#ifdef L_si_to_sf
#define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (floatsisf, CONV32sf)
#endif
#ifdef L_usi_to_sf
#define DECLARE_LIBRARY_RENAMES RENAME_LIBRARY (floatunsisf, CONV32uf)
#endif
/* The 64-bit comparison functions do not have aliases because libgcc2 /* The 64-bit comparison functions do not have aliases because libgcc2
does not provide them. Instead they have to be supplied in does not provide them. Instead they have to be supplied in
rx-abi-functions.c. */ rx-abi-functions.c. */
......
#ifdef FLOAT
#ifndef __RX_64BIT_DOUBLES__ #ifndef __RX_64BIT_DOUBLES__
#define DF SF #define DF SF
#define FLOAT_ONLY #define FLOAT_ONLY
#endif #endif
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment