Home | History | Annotate | Line # | Download | only in i386
bf_enc.S revision 1.1
      1  1.1  tls /*	$NetBSD: bf_enc.S,v 1.1 2001/09/09 11:01:01 tls Exp $	*/
      2  1.1  tls 
      3  1.1  tls /*
      4  1.1  tls  * Written by Jason R. Thorpe <thorpej (at) zembu.com> and Thor Lancelot Simon
      5  1.1  tls  * <tls (at) netbsd.org>.  Public domain.
      6  1.1  tls  */
      7  1.1  tls 
      8  1.1  tls /*
      9  1.1  tls  * XXX Should use CPP symbols defined as a result of
     10  1.1  tls  * XXX `cc -mcpu=pentiumpro'.
     11  1.1  tls  */
     12  1.1  tls #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU)
     13  1.1  tls #include "bf_enc_586.S"
     14  1.1  tls #else
     15  1.1  tls #include "bf_enc_686.S"
     16  1.1  tls #endif
     17