diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-22 08:01:32 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-22 08:01:32 -0400 |
commit | c07e26bda251b938d95b9d6090f0b71b960dfc04 (patch) | |
tree | af25a31f859adc3a3914950d09e86d8052e3865b | |
parent | ae8b3cd83008e85b01a8300d0c37fec2eb47a188 (diff) | |
download | gcc-c07e26bda251b938d95b9d6090f0b71b960dfc04.zip gcc-c07e26bda251b938d95b9d6090f0b71b960dfc04.tar.gz gcc-c07e26bda251b938d95b9d6090f0b71b960dfc04.tar.bz2 |
(__fixuns[xds]fsi): #undef MIN and MAX before #include of limits.h.
From-SVN: r10506
-rw-r--r-- | gcc/libgcc2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 3d9637c..ab13f44 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -1093,6 +1093,8 @@ __floatdisf (u) #undef unsigned #undef float #undef double +#undef MIN +#undef MAX #include <limits.h> USItype @@ -1114,6 +1116,8 @@ __fixunsxfsi (a) #undef unsigned #undef float #undef double +#undef MIN +#undef MAX #include <limits.h> USItype @@ -1135,6 +1139,8 @@ __fixunsdfsi (a) #undef unsigned #undef float #undef double +#undef MIN +#undef MAX #include <limits.h> USItype |