[PD-cvs] pd/src m_pd.h,1.18,1.19

Miller Puckette millerpuckette at users.sourceforge.net
Mon Aug 6 18:39:56 CEST 2007


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26776/pd/src

Modified Files:
	m_pd.h 
Log Message:
fix underflow protection for ia64 (was only enabled for i386)



Index: m_pd.h
===================================================================
RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** m_pd.h	20 Jan 2007 04:06:06 -0000	1.18
--- m_pd.h	6 Aug 2007 16:39:54 -0000	1.19
***************
*** 12,16 ****
  #define PD_MINOR_VERSION 41
  #define PD_BUGFIX_VERSION 0
! #define PD_TEST_VERSION "test04"
  
  /* old name for "MSW" flag -- we have to take it for the sake of many old
--- 12,16 ----
  #define PD_MINOR_VERSION 41
  #define PD_BUGFIX_VERSION 0
! #define PD_TEST_VERSION "test05"
  
  /* old name for "MSW" flag -- we have to take it for the sake of many old
***************
*** 624,628 ****
  
  
! #ifdef __i386__
  /* a test for NANs and denormals.  Should only be necessary on i386. */
  #define PD_BADFLOAT(f) ((((*(unsigned int*)&(f))&0x7f800000)==0) || \
--- 624,628 ----
  
  
! #if defined(__i386__) || defined(__x86_64__)
  /* a test for NANs and denormals.  Should only be necessary on i386. */
  #define PD_BADFLOAT(f) ((((*(unsigned int*)&(f))&0x7f800000)==0) || \





More information about the Pd-cvs mailing list