1*42223Sbostic/*- 2*42223Sbostic * Copyright (c) 1990 The Regents of the University of California. 3*42223Sbostic * All rights reserved. 4*42223Sbostic * 5*42223Sbostic * This code is derived from software contributed to Berkeley by 6*42223Sbostic * the Systems Programming Group of the University of Utah Computer 7*42223Sbostic * Science Department. 8*42223Sbostic * 9*42223Sbostic * %sccs.include.redist.c% 10*42223Sbostic * 11*42223Sbostic * @(#)log1p.s 5.1 (Berkeley) 05/17/90 12*42223Sbostic */ 13*42223Sbostic 14*42223Sbostic/* log1p(x) */ 15*42223Sbostic 16*42223Sbostic .text 17*42223Sbostic .globl _log1p 18*42223Sbostic 19*42223Sbostic_log1p: 20*42223Sbostic flognp1d sp@(4),fp0 21*42223Sbostic fmoved fp0,sp@- 22*42223Sbostic movel sp@+,d0 23*42223Sbostic movel sp@+,d1 24*42223Sbostic rts 25