Move popcount et al to src/common and add popcount32/popcount64.
[netbsd-mini2440.git] / lib / libc / softfloat / eqsf2.c
blob824da3a9e70243c51844eb87aea0fdb32bca4463
1 /* $NetBSD$ */
3 /*
4 * Written by Ben Harris, 2000. This file is in the Public Domain.
5 */
7 #include <sys/cdefs.h>
8 #if defined(LIBC_SCCS) && !defined(lint)
9 __RCSID("$NetBSD$");
10 #endif /* LIBC_SCCS and not lint */
12 #include "softfloat-for-gcc.h"
13 #include "milieu.h"
14 #include "softfloat.h"
16 flag __eqsf2(float32, float32);
18 flag
19 __eqsf2(float32 a, float32 b)
22 /* libgcc1.c says !(a == b) */
23 return !float32_eq(a, b);