aboutsummaryrefslogtreecommitdiffstats
path: root/comms/libfec/files/patch-fec.h
blob: e31bb8383c2904437d2e8c4d0d2c95f4d8215b31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- fec.h.orig	2006-10-13 01:10:53 UTC
+++ fec.h
@@ -262,7 +262,7 @@ extern enum cpu_mode {UNKNOWN=0,PORT,MMX,SSE,SSE2,ALTI
 void find_cpu_mode(void); /* Call this once at startup to set Cpu_mode */
 
 /* Determine parity of argument: 1 = odd, 0 = even */
-#ifdef __i386__
+#ifdef notyet__i386__
 static inline int parityb(unsigned char x){
   __asm__ __volatile__ ("test %1,%1;setpo %0" : "=g"(x) : "r" (x));
   return x;