Commit 8634e925 by Loren J. Rittle Committed by Loren J. Rittle

freebsd.h (SET_ASM_OP): Remove.

	* config/i386/freebsd.h (SET_ASM_OP): Remove.
	(SUBTARGET_OVERRIDE_OPTIONS): Handle TARGET_64BIT case.
	(ASM_COMMENT_START, ASM_APP_ON, ASM_APP_OFF, DBX_REGISTER_NUMBER
	 MCOUNT_NAME, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE_SIZE): Whitespace.

From-SVN: r69242
parent d3276d35
2003-07-11 Loren James Rittle <ljrittle@acm.org>
* config/i386/freebsd.h (SET_ASM_OP): Remove.
(SUBTARGET_OVERRIDE_OPTIONS): Handle TARGET_64BIT case.
(ASM_COMMENT_START, ASM_APP_ON, ASM_APP_OFF, DBX_REGISTER_NUMBER
MCOUNT_NAME, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE_SIZE): Whitespace.
2003-07-11 Richard Henderson <rth@redhat.com> 2003-07-11 Richard Henderson <rth@redhat.com>
* function.c (assign_parms): Don't recombine complex args if * function.c (assign_parms): Don't recombine complex args if
......
...@@ -35,9 +35,6 @@ Boston, MA 02111-1307, USA. */ ...@@ -35,9 +35,6 @@ Boston, MA 02111-1307, USA. */
#undef ASM_APP_OFF #undef ASM_APP_OFF
#define ASM_APP_OFF "#NO_APP\n" #define ASM_APP_OFF "#NO_APP\n"
#undef SET_ASM_OP
#define SET_ASM_OP "\t.set\t"
#undef DBX_REGISTER_NUMBER #undef DBX_REGISTER_NUMBER
#define DBX_REGISTER_NUMBER(n) \ #define DBX_REGISTER_NUMBER(n) \
(TARGET_64BIT ? dbx64_register_map[n] : svr4_dbx_register_map[n]) (TARGET_64BIT ? dbx64_register_map[n] : svr4_dbx_register_map[n])
...@@ -138,8 +135,10 @@ Boston, MA 02111-1307, USA. */ ...@@ -138,8 +135,10 @@ Boston, MA 02111-1307, USA. */
compiler get the contents of <float.h> and std::numeric_limits correct. */ compiler get the contents of <float.h> and std::numeric_limits correct. */
#define SUBTARGET_OVERRIDE_OPTIONS \ #define SUBTARGET_OVERRIDE_OPTIONS \
do { \ do { \
if (!TARGET_64BIT) { \
real_format_for_mode[XFmode - QFmode] \ real_format_for_mode[XFmode - QFmode] \
= &ieee_extended_intel_96_round_53_format; \ = &ieee_extended_intel_96_round_53_format; \
real_format_for_mode[TFmode - QFmode] \ real_format_for_mode[TFmode - QFmode] \
= &ieee_extended_intel_96_round_53_format; \ = &ieee_extended_intel_96_round_53_format; \
} \
} while (0) } while (0)
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