1 /* $NetBSD: eqtf2.c,v 1.1 2011/01/17 10:08:35 matt Exp $ */
4 * Written by Matt Thomas, 2011. This file is in the Public Domain.
8 #if defined(LIBC_SCCS) && !defined(lint)
9 __RCSID("$NetBSD: eqtf2.c,v 1.1 2011/01/17 10:08:35 matt Exp $");
10 #endif /* LIBC_SCCS and not lint */
12 #include "softfloat-for-gcc.h"
14 #include "softfloat.h"
17 flag
__eqtf2(float128
, float128
);
20 __eqtf2(float128 a
, float128 b
)
23 /* libgcc1.c says !(a == b) */
24 return !float128_eq(a
, b
);