summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Brown <neilb@cse.unsw.edu.au>2002-11-20 22:44:20 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-11-20 22:44:20 -0800
commit95ac0dbc49893cfbab4e3a77cdbfe281bd6feb2a (patch)
treee471accd8ec17a42f8b2b6770b3e399b65a42497
parent10d06cd48c36de11d1c2ddf3233a3acd4c5e3d7d (diff)
[PATCH] Avoid 'defined but not used' warning with i386/xor.h
-rw-r--r--include/asm-i386/xor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-i386/xor.h b/include/asm-i386/xor.h
index 29b02468e0e1..4ddeb7e68621 100644
--- a/include/asm-i386/xor.h
+++ b/include/asm-i386/xor.h
@@ -868,7 +868,9 @@ static struct xor_block_template xor_block_pIII_sse = {
#define XOR_TRY_TEMPLATES \
do { \
xor_speed(&xor_block_8regs); \
+ xor_speed(&xor_block_8regs_p); \
xor_speed(&xor_block_32regs); \
+ xor_speed(&xor_block_32regs_p); \
if (cpu_has_xmm) \
xor_speed(&xor_block_pIII_sse); \
if (cpu_has_mmx) { \