Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13986
Modified Files: Tag: devel_0_37 m_pd.h Log Message: added plus_perf8
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.1.1.4.2.20 retrieving revision 1.1.1.4.2.21 diff -C2 -d -r1.1.1.4.2.20 -r1.1.1.4.2.21 *** m_pd.h 7 Oct 2004 17:56:38 -0000 1.1.1.4.2.20 --- m_pd.h 10 Oct 2004 18:16:31 -0000 1.1.1.4.2.21 *************** *** 518,521 **** --- 518,522 ----
EXTERN t_int *plus_perform(t_int *args); + EXTERN t_int *plus_perf8(t_int *args); EXTERN t_int *zero_perform(t_int *args); EXTERN t_int *copy_perform(t_int *args); *************** *** 651,655 **** /* a test for NANs and nubers that are almost (TB) denormals. Should only be necessary on i386. */ ! #ifdef __i386__ #define PD_BADFLOAT(f) ((((*(unsigned int*)&(f))&0x7f800000) < 0x08000000) || \ (((*(unsigned int*)&(f))&0x7f800000)==0x7f800000)) --- 652,656 ---- /* a test for NANs and nubers that are almost (TB) denormals. Should only be necessary on i386. */ ! #if defined (__i386__) && !defined(DAZ) #define PD_BADFLOAT(f) ((((*(unsigned int*)&(f))&0x7f800000) < 0x08000000) || \ (((*(unsigned int*)&(f))&0x7f800000)==0x7f800000))