diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-11 03:01:43 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-11 03:01:43 +0000 |
commit | 7a876e0d36284e7e47bb7be37680d4d5b8d782ae (patch) | |
tree | 7bfe42abb3cef3c54d0d755498f1a38985750e59 /gcc/config/gofast.h | |
parent | 1e8e4a1db2e21c99c6db24b9927fe5a06f60075b (diff) | |
download | gcc-7a876e0d36284e7e47bb7be37680d4d5b8d782ae.tar.gz |
Fix typo that breaks int to double conversions.
* config/gofast.h (gofast_maybe_init_libfuncs): Use SImode for litodp.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84487 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/gofast.h')
-rw-r--r-- | gcc/config/gofast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/gofast.h b/gcc/config/gofast.h index 91b0a651566..81dd9f61b66 100644 --- a/gcc/config/gofast.h +++ b/gcc/config/gofast.h @@ -75,6 +75,6 @@ gofast_maybe_init_libfuncs (void) set_conv_libfunc (ufix_optab, SImode, DFmode, "dptoul"); set_conv_libfunc (sfloat_optab, SFmode, SImode, "sitofp"); - set_conv_libfunc (sfloat_optab, DFmode, DImode, "litodp"); + set_conv_libfunc (sfloat_optab, DFmode, SImode, "litodp"); #endif } |