diff options
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cse.c | 1 | ||||
-rw-r--r-- | gcc/diagnostic.c | 2 | ||||
-rw-r--r-- | gcc/passes.c | 2 | ||||
-rw-r--r-- | gcc/pretty-print.c | 2 | ||||
-rw-r--r-- | gcc/regmove.c | 2 | ||||
-rw-r--r-- | gcc/rtl-error.c | 2 | ||||
-rw-r--r-- | gcc/toplev.c | 2 |
8 files changed, 8 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 47a313a..3816df0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2010-05-19 Joseph Myers <joseph@codesourcery.com> + + * diagnostic.c (FLOAT, FFS): Don't undefine. + * passes.c, pretty-print.c, rtl-error.c, toplev.c: Likewise. + * cse.c, regmove.c: Remove comments about stdio.h and rtl.h + include ordering. + 2010-05-19 Richard Sandiford <rdsandiford@googlemail.com> * combine.c (propagate_for_debug): Call make_compound_operation @@ -20,7 +20,6 @@ along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ #include "config.h" -/* stdio.h must precede rtl.h for FFS. */ #include "system.h" #include "coretypes.h" #include "tm.h" diff --git a/gcc/diagnostic.c b/gcc/diagnostic.c index ed14a21..4bf9b71 100644 --- a/gcc/diagnostic.c +++ b/gcc/diagnostic.c @@ -24,8 +24,6 @@ along with GCC; see the file COPYING3. If not see message module. */ #include "config.h" -#undef FLOAT /* This is for hpux. They should change hpux. */ -#undef FFS /* Some systems define this in param.h. */ #include "system.h" #include "coretypes.h" #include "tm.h" diff --git a/gcc/passes.c b/gcc/passes.c index 4767c59..a425b0f 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -25,8 +25,6 @@ along with GCC; see the file COPYING3. If not see Error messages and low-level interface to malloc also handled here. */ #include "config.h" -#undef FLOAT /* This is for hpux. They should change hpux. */ -#undef FFS /* Some systems define this in param.h. */ #include "system.h" #include "coretypes.h" #include "tm.h" diff --git a/gcc/pretty-print.c b/gcc/pretty-print.c index 5678949..1d6b2cb 100644 --- a/gcc/pretty-print.c +++ b/gcc/pretty-print.c @@ -19,8 +19,6 @@ along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ #include "config.h" -#undef FLOAT /* This is for hpux. They should change hpux. */ -#undef FFS /* Some systems define this in param.h. */ #include "system.h" #include "coretypes.h" #include "intl.h" diff --git a/gcc/regmove.c b/gcc/regmove.c index c9e947e..3e1bf40 100644 --- a/gcc/regmove.c +++ b/gcc/regmove.c @@ -27,7 +27,7 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "tm.h" -#include "rtl.h" /* stdio.h must precede rtl.h for FFS. */ +#include "rtl.h" #include "tm_p.h" #include "insn-config.h" #include "recog.h" diff --git a/gcc/rtl-error.c b/gcc/rtl-error.c index f555800..098666d 100644 --- a/gcc/rtl-error.c +++ b/gcc/rtl-error.c @@ -19,8 +19,6 @@ along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ #include "config.h" -#undef FLOAT /* This is for hpux. They should change hpux. */ -#undef FFS /* Some systems define this in param.h. */ #include "system.h" #include "coretypes.h" #include "tm.h" diff --git a/gcc/toplev.c b/gcc/toplev.c index 67b9bfa..fef9b16 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -25,8 +25,6 @@ along with GCC; see the file COPYING3. If not see Error messages and low-level interface to malloc also handled here. */ #include "config.h" -#undef FLOAT /* This is for hpux. They should change hpux. */ -#undef FFS /* Some systems define this in param.h. */ #include "system.h" #include "coretypes.h" #include "tm.h" |