1/*	$NetBSD: bf_enc.S,v 1.1 2001/09/09 11:01:01 tls Exp $	*/
2/*	$FreeBSD: releng/10.2/sys/crypto/blowfish/arch/i386/bf_enc.S 137784 2004-11-16 20:42:32Z jhb $	*/
3
4/*
5 * Written by Jason R. Thorpe <thorpej@zembu.com> and Thor Lancelot Simon
6 * <tls@netbsd.org>.  Public domain.
7 */
8
9/*
10 * XXX Should use CPP symbols defined as a result of
11 * XXX `cc -mcpu=pentiumpro'.
12 */
13#if defined(I486_CPU) || defined(I586_CPU)
14#include "bf_enc_586.S"
15#else
16#include "bf_enc_686.S"
17#endif
18