Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* * Written by J.T. Conklin <jtc@NetBSD.org>. * Public domain. */ #include <machine/asm.h> RCSID("$NetBSD: e_sqrt.S,v 1.6 2003/07/26 19:25:00 salo Exp $") ENTRY(__ieee754_sqrt) #ifdef __i386__ fldl 4(%esp) fsqrt #else sqrtsd %xmm0,%xmm0 #endif ret