Deleted Added
full compact
s_ceilf.S (145969) s_ceilf.S (192760)
1/*
2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Public domain.
4 */
5
6#include <machine/asm.h>
7
1/*
2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Public domain.
4 */
5
6#include <machine/asm.h>
7
8__FBSDID("$FreeBSD: head/lib/msun/i387/s_ceilf.S 145969 2005-05-06 15:44:20Z deischen $");
8__FBSDID("$FreeBSD: head/lib/msun/i387/s_ceilf.S 192760 2009-05-25 14:37:10Z attilio $");
9/* RCSID("$NetBSD: s_ceilf.S,v 1.3 1995/05/08 23:52:44 jtc Exp $") */
10
11ENTRY(ceilf)
12 pushl %ebp
13 movl %esp,%ebp
14 subl $8,%esp
15
16 fstcw -4(%ebp) /* store fpu control word */

--- 5 unchanged lines hidden (view full) ---

22
23 flds 8(%ebp); /* round */
24 frndint
25
26 fldcw -4(%ebp) /* restore original control word */
27
28 leave
29 ret
9/* RCSID("$NetBSD: s_ceilf.S,v 1.3 1995/05/08 23:52:44 jtc Exp $") */
10
11ENTRY(ceilf)
12 pushl %ebp
13 movl %esp,%ebp
14 subl $8,%esp
15
16 fstcw -4(%ebp) /* store fpu control word */

--- 5 unchanged lines hidden (view full) ---

22
23 flds 8(%ebp); /* round */
24 frndint
25
26 fldcw -4(%ebp) /* restore original control word */
27
28 leave
29 ret
30END(ceilf)