diff options
author | bwilson <bwilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-09 23:41:11 +0000 |
---|---|---|
committer | bwilson <bwilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-09 23:41:11 +0000 |
commit | 367a60584f6290ce19cf2b930c73cdde854269eb (patch) | |
tree | 76a450e08f54ee9462708d61f67f55f1f9ee77fd /include | |
parent | 793883be44f18bebe59f3d91238ccee7bee1a58f (diff) | |
download | gcc-367a60584f6290ce19cf2b930c73cdde854269eb.tar.gz |
include:
* xtensa-config.h (XCHAL_HAVE_MUL32_HIGH): Define.
gcc:
* config/xtensa/ieee754-df.S: New file.
* config/xtensa/ieee754-sf.S: New file.
* config/xtensa/t-xtensa (LIB2FUNCS_EXTRA): Remove fp-bit.c & dp-bit.c.
(LIB1ASMFUNCS): Add SFmode and DFmode floating-point functions.
* config/xtensa/lib1funcs.asm: Include ieee754-df.S and ieee754-sf.S.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109518 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/xtensa-config.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index fd9b34efa0c..dc9e265b4ef 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2006-01-09 Bob Wilson <bob.wilson@acm.org> + + * xtensa-config.h (XCHAL_HAVE_MUL32_HIGH): Define. + 2005-12-30 Bob Wilson <bob.wilson@acm.org> * xtensa-config.h (XCHAL_HAVE_WIDE_BRANCHES): New. diff --git a/include/xtensa-config.h b/include/xtensa-config.h index b48c196350a..5c0315d6198 100644 --- a/include/xtensa-config.h +++ b/include/xtensa-config.h @@ -54,6 +54,9 @@ #undef XCHAL_HAVE_MUL32 #define XCHAL_HAVE_MUL32 0 +#undef XCHAL_HAVE_MUL32_HIGH +#define XCHAL_HAVE_MUL32_HIGH 0 + #undef XCHAL_HAVE_DIV32 #define XCHAL_HAVE_DIV32 0 |