Deleted Added
full compact
s_ceilf.S (192760) s_ceilf.S (217108)
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 192760 2009-05-25 14:37:10Z attilio $");
8__FBSDID("$FreeBSD: head/lib/msun/i387/s_ceilf.S 217108 2011-01-07 16:13:12Z kib $");
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 */

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

23 flds 8(%ebp); /* round */
24 frndint
25
26 fldcw -4(%ebp) /* restore original control word */
27
28 leave
29 ret
30END(ceilf)
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 */

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

23 flds 8(%ebp); /* round */
24 frndint
25
26 fldcw -4(%ebp) /* restore original control word */
27
28 leave
29 ret
30END(ceilf)
31
32 .section .note.GNU-stack,"",%progbits