diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2004-03-11 20:02:16 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-03-11 20:02:16 +0000 |
commit | 0e808055da764187cb050bbfe06baf48dd235184 (patch) | |
tree | 001b9477a1dad8e230c1ce4e94b884f373e5b51f /gcc | |
parent | 3ed8e5b64d13be45d13da3b939ad7f9446a042b0 (diff) | |
download | gcc-0e808055da764187cb050bbfe06baf48dd235184.zip gcc-0e808055da764187cb050bbfe06baf48dd235184.tar.gz gcc-0e808055da764187cb050bbfe06baf48dd235184.tar.bz2 |
re PR target/14496 (ICE at recog.c:2083 building libgcc2.c)
PR target/14496
* config/mips/mips.h (UNITS_PER_FPVALUE): Fix value for
TARGET_SINGLE_FLOAT.
From-SVN: r79342
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 10a7417..bf5617d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-03-11 Richard Sandiford <rsandifo@redhat.com> + + PR target/14496 + * config/mips/mips.h (UNITS_PER_FPVALUE): Fix value for + TARGET_SINGLE_FLOAT. + 2004-03-11 Steve Ellcey <sje@cup.hp.com> * config/ia64/hpux.h (TARGET_INIT_LIBFUNCS): Add undef. diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index cb3a9f3..7622cb3 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -1308,8 +1308,10 @@ extern const struct mips_cpu_info *mips_tune_info; /* The largest size of value that can be held in floating-point registers. */ -#define UNITS_PER_FPVALUE \ - (TARGET_SOFT_FLOAT ? 0 : (LONG_DOUBLE_TYPE_SIZE / BITS_PER_UNIT)) +#define UNITS_PER_FPVALUE \ + (TARGET_SOFT_FLOAT ? 0 \ + : TARGET_SINGLE_FLOAT ? UNITS_PER_FPREG \ + : LONG_DOUBLE_TYPE_SIZE / BITS_PER_UNIT) /* The number of bytes in a double. */ #define UNITS_PER_DOUBLE (TYPE_PRECISION (double_type_node) / BITS_PER_UNIT) |