summaryrefslogtreecommitdiff
path: root/src/math/__fpclassifyf.c
blob: 8149087b0d3f4e80c843acbaffad2875c41d1947 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "libm.h"

int __fpclassifyf(float x)
{
	union fshape u = { x };
	int e = u.bits>>23 & 0xff;
	if (!e) return u.bits<<1 ? FP_SUBNORMAL : FP_ZERO;
	if (e==0xff) return u.bits<<9 ? FP_NAN : FP_INFINITE;
	return FP_NORMAL;
}