summaryrefslogtreecommitdiff
path: root/xc/programs/Xserver/mfb/fastblt.h
diff options
context:
space:
mode:
Diffstat (limited to 'xc/programs/Xserver/mfb/fastblt.h')
-rw-r--r--xc/programs/Xserver/mfb/fastblt.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/xc/programs/Xserver/mfb/fastblt.h b/xc/programs/Xserver/mfb/fastblt.h
index 58f373ef5..4153947e6 100644
--- a/xc/programs/Xserver/mfb/fastblt.h
+++ b/xc/programs/Xserver/mfb/fastblt.h
@@ -22,6 +22,7 @@ other dealings in this Software without prior written authorization
from The Open Group.
*/
+/* $XFree86: xc/programs/Xserver/mfb/fastblt.h,v 1.3 2000/02/12 05:43:25 dawes Exp $ */
/*
* Fast bitblt macros for certain hardware. If your machine has an addressing
@@ -73,7 +74,6 @@ from The Open Group.
}
#endif
-#if PPW == 32
#define DuffL(counter,label,body) \
switch (counter & 3) { \
label: \
@@ -88,27 +88,3 @@ from The Open Group.
if ((counter -= 4) >= 0) \
goto label; \
}
-#else /* PPW == 64 */
-#define DuffL(counter,label,body) \
- switch (counter & 7) { \
- label: \
- body \
- case 7: \
- body \
- case 6: \
- body \
- case 5: \
- body \
- case 4: \
- body \
- case 3: \
- body \
- case 2: \
- body \
- case 1: \
- body \
- case 0: \
- if ((counter -= 8) >= 0) \
- goto label; \
- }
-#endif /* PPW */