1*0a6a1f1dSLionel Sambuc/* $NetBSD: e_sqrt.S,v 1.2 2015/03/27 23:35:40 matt Exp $ */ 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc/* The contents of this file are in the public domain. */ 4*0a6a1f1dSLionel Sambuc 5*0a6a1f1dSLionel Sambuc#include <machine/asm.h> 6*0a6a1f1dSLionel Sambuc 7*0a6a1f1dSLionel SambucENTRY(__ieee754_sqrt) 8*0a6a1f1dSLionel Sambuc fsqrt.d fa0, fa0 9*0a6a1f1dSLionel Sambuc ret 10*0a6a1f1dSLionel SambucEND(__ieee754_sqrt) 11