Commit 02d353cf by Uros Bizjak Committed by Uros Bizjak

sfp-machine.h (__gcc_CMPtype): New typedef.

        * config/i386/sfp-machine.h (__gcc_CMPtype): New typedef.
        (CMPtype): Define as __gcc_CMPtype.
        * config/rs6000/sfp-machine.h (__gcc_CMPtype): New typedef.
        (CMPtype): Define as __gcc_CMPtype.

From-SVN: r132413
parent 35dee980
2008-02-19 Uros Bizjak <ubizjak@gmail.com>
* config/i386/sfp-machine.h (__gcc_CMPtype): New typedef.
(CMPtype): Define as __gcc_CMPtype.
* config/rs6000/sfp-machine.h (__gcc_CMPtype): New typedef.
(CMPtype): Define as __gcc_CMPtype.
2008-02-19 Hans-Peter Nilsson <hp@axis.com> 2008-02-19 Hans-Peter Nilsson <hp@axis.com>
Support valgrind 3.3 for --enable-checking=valgrind. Support valgrind 3.3 for --enable-checking=valgrind.
......
...@@ -10,7 +10,8 @@ typedef unsigned int UTItype __attribute__ ((mode (TI))); ...@@ -10,7 +10,8 @@ typedef unsigned int UTItype __attribute__ ((mode (TI)));
/* The type of the result of a floating point comparison. This must /* The type of the result of a floating point comparison. This must
match `__libgcc_cmp_return__' in GCC for the target. */ match `__libgcc_cmp_return__' in GCC for the target. */
#define CMPtype long typedef int __gcc_CMPtype __attribute__ ((mode (__libgcc_cmp_return__)));
#define CMPtype __gcc_CMPtype
#define _FP_MUL_MEAT_Q(R,X,Y) \ #define _FP_MUL_MEAT_Q(R,X,Y) \
_FP_MUL_MEAT_2_wide(_FP_WFRACBITS_Q,R,X,Y,umul_ppmm) _FP_MUL_MEAT_2_wide(_FP_WFRACBITS_Q,R,X,Y,umul_ppmm)
......
...@@ -3,6 +3,11 @@ ...@@ -3,6 +3,11 @@
#define _FP_WS_TYPE signed long #define _FP_WS_TYPE signed long
#define _FP_I_TYPE long #define _FP_I_TYPE long
/* The type of the result of a floating point comparison. This must
match `__libgcc_cmp_return__' in GCC for the target. */
typedef int __gcc_CMPtype __attribute__ ((mode (__libgcc_cmp_return__)));
#define CMPtype __gcc_CMPtype
#define _FP_MUL_MEAT_S(R,X,Y) \ #define _FP_MUL_MEAT_S(R,X,Y) \
_FP_MUL_MEAT_1_wide(_FP_WFRACBITS_S,R,X,Y,umul_ppmm) _FP_MUL_MEAT_1_wide(_FP_WFRACBITS_S,R,X,Y,umul_ppmm)
#define _FP_MUL_MEAT_D(R,X,Y) \ #define _FP_MUL_MEAT_D(R,X,Y) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment