Home | History | Annotate | Line # | Download | only in i386
      1  1.4   lukem /*	$NetBSD: bf_enc.S,v 1.4 2007/12/11 23:15:30 lukem 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.2  keihan  * <tls (at) NetBSD.org>.  Public domain.
      6  1.1     tls  */
      7  1.1     tls 
      8  1.4   lukem #include <i386/include/asm.h>
      9  1.4   lukem __KERNEL_RCSID(0, "$NetBSD: bf_enc.S,v 1.4 2007/12/11 23:15:30 lukem Exp $");
     10  1.4   lukem 
     11  1.1     tls /*
     12  1.1     tls  * XXX Should use CPP symbols defined as a result of
     13  1.1     tls  * XXX `cc -mcpu=pentiumpro'.
     14  1.1     tls  */
     15  1.1     tls #if defined(I386_CPU) || defined(I486_CPU) || defined(I586_CPU)
     16  1.1     tls #include "bf_enc_586.S"
     17  1.1     tls #else
     18  1.1     tls #include "bf_enc_686.S"
     19  1.1     tls #endif
     20