142223Sbostic/*- 2*61285Sbostic * Copyright (c) 1990, 1993 3*61285Sbostic * The Regents of the University of California. All rights reserved. 442223Sbostic * 542223Sbostic * This code is derived from software contributed to Berkeley by 642223Sbostic * the Systems Programming Group of the University of Utah Computer 742223Sbostic * Science Department. 842223Sbostic * 942223Sbostic * %sccs.include.redist.c% 1042223Sbostic * 11*61285Sbostic * @(#)log1p.s 8.1 (Berkeley) 06/04/93 1242223Sbostic */ 1342223Sbostic 1442223Sbostic/* log1p(x) */ 1542223Sbostic 1642223Sbostic .text 1742223Sbostic .globl _log1p 1842223Sbostic 1942223Sbostic_log1p: 2042223Sbostic flognp1d sp@(4),fp0 2142223Sbostic fmoved fp0,sp@- 2242223Sbostic movel sp@+,d0 2342223Sbostic movel sp@+,d1 2442223Sbostic rts 25