about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_finitel.S
blob: 2cd2da99f9c639bfba22c43c7f693fef2d73ca71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

#include <machine/asm.h>

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