diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2010-05-28 11:19:41 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2010-05-28 13:19:41 +0200 |
commit | 40dcd88bb984adbf44039ecef933bd061a810e06 (patch) | |
tree | 108accce260724e66ec947787defff7a9c898bb8 | |
parent | 1cb980a29c89489779ddd2fb3fd2566bbbbfb1a6 (diff) | |
download | gcc-40dcd88bb984adbf44039ecef933bd061a810e06.zip gcc-40dcd88bb984adbf44039ecef933bd061a810e06.tar.gz gcc-40dcd88bb984adbf44039ecef933bd061a810e06.tar.bz2 |
re PR bootstrap/44299 (Bootstrap broken for cygwin and mingw targets)
2010-05-28 Kai Tietz <kai.tietz@onevision.com>
PR bootstrap/44299
* config/i386/t-cygming: Adjust header dependencies for winnt-cxx.c.
* config/i386/winnt-cxx.c (IN_GCC_FRONTEND): Remove undefine.
* config/i386/winnt.c (IN_GCC_FRONTEND): Likewise.
From-SVN: r159965
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/i386/t-cygming | 2 | ||||
-rw-r--r-- | gcc/config/i386/winnt-cxx.c | 6 | ||||
-rw-r--r-- | gcc/config/i386/winnt.c | 2 |
4 files changed, 10 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 268e0ca..79f2ca7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2010-05-28 Kai Tietz <kai.tietz@onevision.com> + + PR bootstrap/44299 + * config/i386/t-cygming: Adjust header dependencies for winnt-cxx.c. + * config/i386/winnt-cxx.c (IN_GCC_FRONTEND): Remove undefine. + * config/i386/winnt.c (IN_GCC_FRONTEND): Likewise. + 2010-05-28 Alan Modra <amodra@gmail.com> PR target/44266 diff --git a/gcc/config/i386/t-cygming b/gcc/config/i386/t-cygming index e9f94a7..0a65ffd 100644 --- a/gcc/config/i386/t-cygming +++ b/gcc/config/i386/t-cygming @@ -35,7 +35,7 @@ winnt.o: $(srcdir)/config/i386/winnt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ $(srcdir)/config/i386/winnt.c winnt-cxx.o: $(srcdir)/config/i386/winnt-cxx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ - $(TM_H) $(RTL_H) $(REGS_H) hard-reg-set.h output.h $(TREE_H) flags.h \ + $(TM_H) $(TREE_H) flags.h \ $(TM_P_H) toplev.h $(HASHTAB_H) $(GGC_H) $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ $(srcdir)/config/i386/winnt-cxx.c diff --git a/gcc/config/i386/winnt-cxx.c b/gcc/config/i386/winnt-cxx.c index 9b4ae35..9ae7ced 100644 --- a/gcc/config/i386/winnt-cxx.c +++ b/gcc/config/i386/winnt-cxx.c @@ -17,15 +17,11 @@ for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ -#undef IN_GCC_FRONTEND + #include "config.h" #include "system.h" #include "coretypes.h" #include "tm.h" -#include "rtl.h" -#include "regs.h" -#include "hard-reg-set.h" -#include "output.h" #include "tree.h" #include "cp/cp-tree.h" /* This is why we're a separate module. */ #include "flags.h" diff --git a/gcc/config/i386/winnt.c b/gcc/config/i386/winnt.c index d2828f0..3750e0c 100644 --- a/gcc/config/i386/winnt.c +++ b/gcc/config/i386/winnt.c @@ -18,7 +18,7 @@ for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ -#undef IN_GCC_FRONTEND + #include "config.h" #include "system.h" #include "coretypes.h" |