diff options
Diffstat (limited to 'gcc/config/fixtfdi.c')
-rw-r--r-- | gcc/config/fixtfdi.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/config/fixtfdi.c b/gcc/config/fixtfdi.c deleted file mode 100644 index 42b8c23..0000000 --- a/gcc/config/fixtfdi.c +++ /dev/null @@ -1,18 +0,0 @@ -/* Public domain. */ -#if __LDBL_MANT_DIG__ == 106 || __LDBL_MANT_DIG__ == 113 -typedef int DItype __attribute__ ((mode (DI))); -typedef float TFtype __attribute__ ((mode (TF))); - -DItype __fixtfdi (TFtype); -DItype __fixunstfdi (TFtype); - - -DItype -__fixtfdi (TFtype x) -{ - if (x < 0) - return - __fixunstfdi (-x); - return __fixunstfdi (x); -} - -#endif |