Merge from vendor branch GROFF:
[dragonfly.git] / sys / crypto / blowfish / arch / i386 / bf_enc.S
1 /*      $NetBSD: bf_enc.S,v 1.1 2001/09/09 11:01:01 tls Exp $   */
2 /*      $FreeBSD: src/sys/crypto/blowfish/arch/i386/bf_enc.S,v 1.1.2.1 2002/03/26 10:12:24 ume Exp $    */
3 /*      $DragonFly: src/sys/crypto/blowfish/arch/i386/bf_enc.S,v 1.2 2003/06/17 04:28:20 dillon Exp $   */
4
5 /*
6  * Written by Jason R. Thorpe <thorpej@zembu.com> and Thor Lancelot Simon
7  * <tls@netbsd.org>.  Public domain.
8  */
9
10 /*
11  * XXX Should use CPP symbols defined as a result of
12  * XXX `cc -mcpu=pentiumpro'.
13  */
14 #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU)
15 #include "bf_enc_586.S"
16 #else
17 #include "bf_enc_686.S"
18 #endif