diff options
author | Eric Christopher <echristo@redhat.com> | 2002-06-19 23:01:59 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2002-06-19 23:01:59 +0000 |
commit | c894819cd5dfdfe174f9da598299f429570b74bb (patch) | |
tree | c07b1f76b3ee9af9c4f63b52a8a8ae6c2d18f16b /gcc | |
parent | 4005971c079cc76629a3646e817e7fac34968df1 (diff) | |
download | gcc-c894819cd5dfdfe174f9da598299f429570b74bb.zip gcc-c894819cd5dfdfe174f9da598299f429570b74bb.tar.gz gcc-c894819cd5dfdfe174f9da598299f429570b74bb.tar.bz2 |
fp-bit.h: Add unordered defines for gofast.
2002-06-19 Eric Christopher <echristo@redhat.com>
* config/fp-bit.h: Add unordered defines for gofast.
From-SVN: r54803
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 14 | ||||
-rw-r--r-- | gcc/config/fp-bit.h | 4 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9de02b9..06731ef 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-06-19 Eric Christopher <echristo@redhat.com> + + * config/fp-bit.h: Add unordered defines for gofast. + 2002-06-19 Vladimir Makarov <vmakarov@redhat.com> * genautomata.c (DECL_UNIT, DECL_BYPASS, DECL_AUTOMATON, @@ -47,7 +51,7 @@ (make_internal_dfa_insn_code_attr, make_default_insn_latency_attr, make_bypass_attr, form_important_insn_automata_lists, expand_automata): Use the macros. - + 2002-06-20 Tim Josling <tej@melbpc.org.au> * Makefile.in: Clean up code to check for misspecified languages @@ -77,7 +81,7 @@ (call_value): Remove constraint on unused uperand. (udivmodhi4, udivmodsi4, udivmoddihi4_internal): Remove. (udivmoddiqi4_internal, udivmoddihi4, udivmoddiqi4): Remove. - + * longlong.h (count_trailing_zeros): Escape newline and beautify. 2002-06-19 Mark Mitchell <mark@codesourcery.com> @@ -152,7 +156,7 @@ Tue Jun 18 20:53:32 2002 J"orn Rennecke <joern.rennecke@superh.com> (gen_automata_option): Process the new options. (transform_2, transform_3): Initialize some variables. (initiate_automaton_gen): Use the new macros. - + 2002-06-18 Richard Sandiford <rsandifo@redhat.com> * config/mips/mips-protos.h (mips_initial_elimination_offset): Declare. @@ -407,7 +411,7 @@ Sun Jun 16 22:16:10 CEST 2002 Jan Hubicka <jh@suse.cz> for every loop iteration. 2002-06-14 Eric Botcazou <ebotcazou@multimania.com> - + * loop.c (for_each_insn_in_loop): Fix formatting and comments. 2002-06-14 Eric Botcazou <ebotcazou@multimania.com> @@ -490,7 +494,7 @@ Fri Jun 14 12:04:02 2002 Dhananjay R. Deshpande <dhananjayd@kpit.com> * reload.c (get_secondary_mem,find_reloads_address, find_reloads_address_1): Pass reference to MEM to find_reloads_address so that LEGITIMIZE_RELOAD_ADDRESS will be called. - + 2002-06-13 Jessica Han <jessica@cup.hp.com> * defaults.h (TARGET_VTABLE_ENTRY_ALIGN): New. diff --git a/gcc/config/fp-bit.h b/gcc/config/fp-bit.h index ab1817a..03e2ff6 100644 --- a/gcc/config/fp-bit.h +++ b/gcc/config/fp-bit.h @@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA. */ This avoids the need to pull in the entire fp emulation library when only a small number of functions are needed. - If FINE_GRAINED_LIBRARIES is not defined, then compile every + If FINE_GRAINED_LIBRARIES is not defined, then compile every suitable routine. */ #ifndef FINE_GRAINED_LIBRARIES #define L_pack_df @@ -163,6 +163,7 @@ typedef unsigned int UDItype __attribute__ ((mode (DI))); # define multiply fpmul # define divide fpdiv # define compare fpcmp +# define _unord_f2 __unordsf2 # define usi_to_float __floatunsisf # define si_to_float sitofp # define float_to_si fptosi @@ -176,6 +177,7 @@ typedef unsigned int UDItype __attribute__ ((mode (DI))); # define multiply dpmul # define divide dpdiv # define compare dpcmp +# define _unord_f2 __unorddf2 # define usi_to_float __floatunsidf # define si_to_float litodp # define float_to_si dptoli |