diff options
author | Richard Sandiford <richard@codesourcery.com> | 2007-09-06 15:00:47 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2007-09-06 15:00:47 +0000 |
commit | 5ee7f30627dfac38d5bd1b9815cf69e3844ff9c9 (patch) | |
tree | b862d9ac9be52506554c4c38146ab513cdeead3b /gcc | |
parent | 38f1f8cb89ef7a7e971d5fa44c9c67ef2536a08f (diff) | |
download | gcc-5ee7f30627dfac38d5bd1b9815cf69e3844ff9c9.zip gcc-5ee7f30627dfac38d5bd1b9815cf69e3844ff9c9.tar.gz gcc-5ee7f30627dfac38d5bd1b9815cf69e3844ff9c9.tar.bz2 |
gcc/
* config/mips/mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2)
(fixuns_truncsfsi2, fixuns_truncsfdi2): Update calls to real_2expN.
From-SVN: r128186
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.md | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b195600..d132863 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-09-06 Richard Sandiford <richard@codesourcery.com> + + * config/mips/mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2) + (fixuns_truncsfsi2, fixuns_truncsfdi2): Update calls to real_2expN. + 2007-09-06 Revital Eres <eres@il.ibm.com> * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p): diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 6cda709..f8333ec 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -2805,7 +2805,7 @@ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - real_2expN (&offset, 31); + real_2expN (&offset, 31, DFmode); if (reg1) /* Turn off complaints about unreached code. */ { @@ -2850,7 +2850,7 @@ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - real_2expN (&offset, 63); + real_2expN (&offset, 63, DFmode); mips_emit_move (reg1, CONST_DOUBLE_FROM_REAL_VALUE (offset, DFmode)); do_pending_stack_adjust (); @@ -2892,7 +2892,7 @@ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - real_2expN (&offset, 31); + real_2expN (&offset, 31, SFmode); mips_emit_move (reg1, CONST_DOUBLE_FROM_REAL_VALUE (offset, SFmode)); do_pending_stack_adjust (); @@ -2934,7 +2934,7 @@ rtx label2 = gen_label_rtx (); REAL_VALUE_TYPE offset; - real_2expN (&offset, 63); + real_2expN (&offset, 63, SFmode); mips_emit_move (reg1, CONST_DOUBLE_FROM_REAL_VALUE (offset, SFmode)); do_pending_stack_adjust (); |