diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-09 22:05:44 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-09 22:05:44 +0000 |
| commit | 2425cbe71bb0b9bef5fb500bea44c816804d41d1 (patch) | |
| tree | 1b5f8908666bf28689f7b094dcb256cc8cd546c0 | |
| parent | 60abe26b751b17691b190b7a49f9ce9ec7161208 (diff) | |
| download | ppe42-gcc-2425cbe71bb0b9bef5fb500bea44c816804d41d1.tar.gz ppe42-gcc-2425cbe71bb0b9bef5fb500bea44c816804d41d1.zip | |
2001-07-09 Kazu Hirata <kazu@hxi.com>
* config/h8300/t-h8300 (LIB1ASMFUNCS): Add _floatdisf and _fixsfdi.
* config/mn10200/t-mn10200 (LIB1ASMFUNCS): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43882 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/h8300/t-h8300 | 3 | ||||
| -rw-r--r-- | gcc/config/mn10200/t-mn10200 | 4 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c45d09dcb67..62516014b80 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-07-09 Kazu Hirata <kazu@hxi.com> + + * config/h8300/t-h8300 (LIB1ASMFUNCS): Add _floatdisf and _fixsfdi. + * config/mn10200/t-mn10200 (LIB1ASMFUNCS): Likewise. + 2001-07-09 Andreas Jaeger <aj@suse.de> * output.h: Add declaration of final_forward_branch_p. diff --git a/gcc/config/h8300/t-h8300 b/gcc/config/h8300/t-h8300 index 199082754f5..cd4de396576 100644 --- a/gcc/config/h8300/t-h8300 +++ b/gcc/config/h8300/t-h8300 @@ -1,5 +1,6 @@ LIB1ASMSRC = h8300/lib1funcs.asm -LIB1ASMFUNCS = _cmpsi2 _ucmpsi2 _divhi3 _divsi3 _mulhi3 _mulsi3 +LIB1ASMFUNCS = _cmpsi2 _ucmpsi2 _divhi3 _divsi3 _mulhi3 _mulsi3 \ + _floatdisf _fixsfdi # We do not have DF or DI types, so fake out the libgcc2 compilation. TARGET_LIBGCC2_CFLAGS = -DDF=SF -DDI=SI diff --git a/gcc/config/mn10200/t-mn10200 b/gcc/config/mn10200/t-mn10200 index 7b2dcea652f..7bdc5abdd07 100644 --- a/gcc/config/mn10200/t-mn10200 +++ b/gcc/config/mn10200/t-mn10200 @@ -26,7 +26,9 @@ LIB1ASMFUNCS = _divhi3 \ _prologue \ _epilogue_a0 \ _epilogue_d0 \ - _epilogue_noreturn + _epilogue_noreturn \ + _floatdisf \ + _fixsfdi # We do not have DF or DI types, so fake out the libgcc2 compilation. |

