NetBSD/lib/libcrypto/arch/i386/bf_enc_x86.S
thorpej 24e460d382 If any of __pentiumpro__, __tune_pentiumpro__, or __tune_i686__ are
defined, use bf_enc_686.S, else bf_enc_586.S.
2002-06-16 18:35:02 +00:00

14 lines
298 B
ArmAsm

/* $NetBSD: bf_enc_x86.S,v 1.2 2002/06/16 18:35:02 thorpej Exp $ */
/*
* Written by Jason R. Thorpe <thorpej@zembu.com>
* Public domain.
*/
#if defined(__pentiumpro__) || defined(__tune_pentiumpro__) || \
defined(__tune_i686__)
#include "bf_enc_686.S"
#else
#include "bf_enc_586.S"
#endif