[PD-cvs] pd/src m_simd_sse_gcc.c,1.1.2.4,1.1.2.5 m_simd_sse_vc.c,1.1.2.4,1.1.2.5

Tim Blechmann timblech at users.sourceforge.net
Thu Sep 2 16:23:03 CEST 2004


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

Modified Files:
      Tag: devel_0_37
	m_simd_sse_gcc.c m_simd_sse_vc.c 
Log Message:
fixed compile error with -DDONTUSESIMD

Index: m_simd_sse_vc.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/m_simd_sse_vc.c,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** m_simd_sse_vc.c	31 Aug 2004 11:09:39 -0000	1.1.2.4
--- m_simd_sse_vc.c	2 Sep 2004 14:23:01 -0000	1.1.2.5
***************
*** 7,11 ****
  #include "m_simd.h"
  
! #if defined(NT) && defined(_MSC_VER)
  
  t_int *zero_perf_sse_vc(t_int *w)
--- 7,11 ----
  #include "m_simd.h"
  
! #if defined(NT) && defined(_MSC_VER) && !(defined DONTUSESIMD)
  
  t_int *zero_perf_sse_vc(t_int *w)

Index: m_simd_sse_gcc.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/m_simd_sse_gcc.c,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** m_simd_sse_gcc.c	31 Aug 2004 08:05:49 -0000	1.1.2.4
--- m_simd_sse_gcc.c	2 Sep 2004 14:23:01 -0000	1.1.2.5
***************
*** 7,11 ****
  #include "m_simd.h"
  
! #if defined(__GNUC__) && (defined(_X86_) || defined(__i386__) || defined(__i586__) || defined(__i686__))
  
  
--- 7,11 ----
  #include "m_simd.h"
  
! #if defined(__GNUC__) && (defined(_X86_) || defined(__i386__) || defined(__i586__) || defined(__i686__)) && !(defined DONTUSESIMD)
  
  





More information about the Pd-cvs mailing list