Example #1
0
flag
__eqtf2(float128 a, float128 b)
{

	/* libgcc1.c says !(a == b) */
	return !float128_eq(a, b);
}
Example #2
0
flag
__netf2(float128 a, float128 b)
{

	/* libgcc1.c says a != b */
	return !float128_eq(a, b);
}
Example #3
0
int __nexf2(long_double A, long_double B)
{
#if __SIZEOF_LONG_DOUBLE__ == 12
	return !floatx80_eq(A, B);
#else
	return !float128_eq(A, B);
#endif
}