parentesisation

This commit is contained in:
gbeauche 2004-05-07 14:19:50 +00:00
parent 2eda71a795
commit 5164fc9dfc

View File

@ -393,37 +393,37 @@ void OPPROTO op_mtcrf_T0_im(void)
#define do_fabs(x) fabs(x) #define do_fabs(x) fabs(x)
#endif #endif
#ifndef do_fadd #ifndef do_fadd
#define do_fadd(x, y) x + y #define do_fadd(x, y) (x) + (y)
#endif #endif
#ifndef do_fdiv #ifndef do_fdiv
#define do_fdiv(x, y) x / y #define do_fdiv(x, y) (x) / (y)
#endif #endif
#ifndef do_fmadd #ifndef do_fmadd
#define do_fmadd(x, y, z) ((x * y) + z) #define do_fmadd(x, y, z) (((x) * (y)) + (z))
#endif #endif
#ifndef do_fmsub #ifndef do_fmsub
#define do_fmsub(x, y, z) ((x * y) - z) #define do_fmsub(x, y, z) (((x) * (y)) - (z))
#endif #endif
#ifndef do_fmul #ifndef do_fmul
#define do_fmul(x, y) (x * y) #define do_fmul(x, y) ((x) * (y))
#endif #endif
#ifndef do_fneg #ifndef do_fneg
#define do_fneg(x) -x #define do_fneg(x) -(x)
#endif #endif
#ifndef do_fnabs #ifndef do_fnabs
#define do_fnabs(x) do_fneg(do_fabs(x)) #define do_fnabs(x) do_fneg(do_fabs(x))
#endif #endif
#ifndef do_fnmadd #ifndef do_fnmadd
#define do_fnmadd(x, y, z) do_fneg((x * y) + z) #define do_fnmadd(x, y, z) do_fneg(((x) * (y)) + (z))
#endif #endif
#ifndef do_fnmsub #ifndef do_fnmsub
#define do_fnmsub(x, y, z) do_fneg((x * y) - z) #define do_fnmsub(x, y, z) do_fneg(((x) * (y)) - (z))
#endif #endif
#ifndef do_fsub #ifndef do_fsub
#define do_fsub(x, y) x - y #define do_fsub(x, y) (x) - (y)
#endif #endif
#ifndef do_fmov #ifndef do_fmov
#define do_fmov(x) x #define do_fmov(x) (x)
#endif #endif