diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-03-11 21:03:58 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-03-11 21:03:58 +0000 |
commit | cd6a5007071b8507492dbbed2abb2d4e6a6f431d (patch) | |
tree | db950afdb100d89ace175e0f062f4fd6c8a54262 /gcc | |
parent | 41f3a9307a5aa3db789f1311e04fb24a6f8807b0 (diff) | |
download | gcc-cd6a5007071b8507492dbbed2abb2d4e6a6f431d.zip gcc-cd6a5007071b8507492dbbed2abb2d4e6a6f431d.tar.gz gcc-cd6a5007071b8507492dbbed2abb2d4e6a6f431d.tar.bz2 |
Makefile.in: Update.
* Makefile.in: Update.
* c-cppbuiltin.c: Include tm_p.h.
From-SVN: r64187
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/c-cppbuiltin.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d488b35..da85a8b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-11 Neil Booth <neil@daikokuya.co.uk> + + * Makefile.in: Update. + * c-cppbuiltin.c: Include tm_p.h. + 2003-03-11 Aldy Hernandez <aldyh@redhat.com> * doc/tm.texi (Frame Registers): Document DWARF_REG_TO_UNWIND_COLUMN. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 967ff38..69c1c10 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1285,7 +1285,7 @@ c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_CO c-cppbuiltin.o : c-cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ $(TREE_H) $(C_COMMON_H) c-pragma.h flags.h toplev.h langhooks.h \ - output.h except.h real.h + output.h except.h real.$(TM_P_H) # A file used by all variants of C and some other languages. diff --git a/gcc/c-cppbuiltin.c b/gcc/c-cppbuiltin.c index adbefd0..4ff194e 100644 --- a/gcc/c-cppbuiltin.c +++ b/gcc/c-cppbuiltin.c @@ -30,6 +30,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "output.h" #include "except.h" /* For USING_SJLJ_EXCEPTIONS. */ #include "toplev.h" +#include "tm_p.h" /* Target prototypes. */ #ifndef REGISTER_PREFIX #define REGISTER_PREFIX "" |