1*2fe8fb19SBen Gras /* $NetBSD: gtxf2.c,v 1.2 2004/09/27 10:16:24 he Exp $ */ 2*2fe8fb19SBen Gras 3*2fe8fb19SBen Gras /* 4*2fe8fb19SBen Gras * Written by Ben Harris, 2000. This file is in the Public Domain. 5*2fe8fb19SBen Gras */ 6*2fe8fb19SBen Gras 7*2fe8fb19SBen Gras #include "softfloat-for-gcc.h" 8*2fe8fb19SBen Gras #include "milieu.h" 9*2fe8fb19SBen Gras #include "softfloat.h" 10*2fe8fb19SBen Gras 11*2fe8fb19SBen Gras #include <sys/cdefs.h> 12*2fe8fb19SBen Gras #if defined(LIBC_SCCS) && !defined(lint) 13*2fe8fb19SBen Gras __RCSID("$NetBSD: gtxf2.c,v 1.2 2004/09/27 10:16:24 he Exp $"); 14*2fe8fb19SBen Gras #endif /* LIBC_SCCS and not lint */ 15*2fe8fb19SBen Gras 16*2fe8fb19SBen Gras #ifdef FLOATX80 17*2fe8fb19SBen Gras 18*2fe8fb19SBen Gras flag __gtxf2(floatx80, floatx80); 19*2fe8fb19SBen Gras 20*2fe8fb19SBen Gras flag __gtxf2(floatx80 a,floatx80 b)21*2fe8fb19SBen Gras__gtxf2(floatx80 a, floatx80 b) 22*2fe8fb19SBen Gras { 23*2fe8fb19SBen Gras 24*2fe8fb19SBen Gras /* libgcc1.c says a > b */ 25*2fe8fb19SBen Gras return floatx80_lt(b, a); 26*2fe8fb19SBen Gras } 27*2fe8fb19SBen Gras #endif /* FLOATX80 */ 28