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