OSDN Git Service

PR target/14496
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Mar 2004 20:02:16 +0000 (20:02 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Mar 2004 20:02:16 +0000 (20:02 +0000)
* config/mips/mips.h (UNITS_PER_FPVALUE): Fix value for
TARGET_SINGLE_FLOAT.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79342 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mips/mips.h

index 10a7417..bf5617d 100644 (file)
@@ -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.
index cb3a9f3..7622cb3 100644 (file)
@@ -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)