aboutsummaryrefslogtreecommitdiffstats
path: root/langs/nl/contact.po
diff options
context:
space:
mode:
authorfilip <filip.komar@gmail.com>2019-07-01 00:01:56 +0200
committerfilip <filip.komar@gmail.com>2019-07-01 00:01:56 +0200
commitc07819da6d6f38c17e4f144aa40913ef3c4856e7 (patch)
treee1c725153eed602df114134b810b9b1f02b33721 /langs/nl/contact.po
parent7d7bb4f8f4ef7c9c23f98c58b6b64aad969c08bd (diff)
downloadwww-c07819da6d6f38c17e4f144aa40913ef3c4856e7.tar
www-c07819da6d6f38c17e4f144aa40913ef3c4856e7.tar.gz
www-c07819da6d6f38c17e4f144aa40913ef3c4856e7.tar.bz2
www-c07819da6d6f38c17e4f144aa40913ef3c4856e7.tar.xz
www-c07819da6d6f38c17e4f144aa40913ef3c4856e7.zip
remove string that will never be used unchanged anyway
Diffstat (limited to 'langs/nl/contact.po')
0 files changed, 0 insertions, 0 deletions
> 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#
#   int  ilogb ( double x );
#
#   returns  (int) log2 (fabs(x))  for x!=0
#   returns  MIN_INT               for x==0
#

.text
.global ilogb
.type   ilogb,@function

ilogb:
	movl	8(%esp),%eax
	addl	%eax,%eax
	jz	.Lzero
	shrl	$21,%eax
	subl	$1023,%eax
	ret
	
.Lzero:
	stc
	rcrl	%eax
	ret