aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/i386/fpu/s_finitel.S
blob: b473443a042b78ed9e9968eb3a0de7562db4fe4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Written by Joe Keane <jgk@jgk.org>.
 */

#include <machine/asm.h>

ENTRY(__finitel)
	movl	12(%esp),%eax
	orl	$0xffff8000, %eax
	incl	%eax
	shrl	$31, %eax
	ret
END (__finitel)
strong_alias(__finitel, __finitel_internal)
weak_alias (__finitel, finitel)