diff options
| author | hainque <hainque@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 15:57:21 +0000 |
|---|---|---|
| committer | hainque <hainque@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 15:57:21 +0000 |
| commit | 3c012b910e1bc941de131f3561fdb05de4952af9 (patch) | |
| tree | 6ac126f4dad7246e99b64e9b065e83bb138df4bf | |
| parent | 5ef4af82b73d491288c136102710a80b4b649cb9 (diff) | |
| download | ppe42-gcc-3c012b910e1bc941de131f3561fdb05de4952af9.tar.gz ppe42-gcc-3c012b910e1bc941de131f3561fdb05de4952af9.zip | |
2007-08-29 Olivier Hainque <hainque@adacore.com>
* xcoffout.c: #include debug.h.
* Makefile.in (xcoffout.o): Add debug.h dependency.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127906 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/Makefile.in | 2 | ||||
| -rw-r--r-- | gcc/xcoffout.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 40b8b6b96d5..aee97d8d12d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-08-29 Olivier Hainque <hainque@adacore.com> + + * xcoffout.c: #include debug.h. + * Makefile.in (xcoffout.o): Add debug.h dependency. + 2007-08-29 Uros Bizjak <ubizjak@gmail.com> * simplify-rtx.c (simplify_binary_operation_1) [VEC_SELECT]: diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ad6dd0e644d..5e086635445 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2428,7 +2428,7 @@ vmsdbgout.o : vmsdbgout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) $(FLAGS_H) output.h vmsdbg.h debug.h langhooks.h $(FUNCTION_H) $(TARGET_H) xcoffout.o : xcoffout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ $(TREE_H) $(RTL_H) xcoffout.h $(FLAGS_H) toplev.h output.h dbxout.h \ - $(GGC_H) $(TARGET_H) gstab.h xcoff.h + $(GGC_H) $(TARGET_H) debug.h gstab.h xcoff.h emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ $(TREE_H) $(FLAGS_H) $(FUNCTION_H) $(REGS_H) insn-config.h $(RECOG_H) \ $(GGC_H) $(EXPR_H) hard-reg-set.h bitmap.h toplev.h $(BASIC_BLOCK_H) \ diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c index d1dc5a3a4db..fb99903b76d 100644 --- a/gcc/xcoffout.c +++ b/gcc/xcoffout.c @@ -34,6 +34,7 @@ along with GCC; see the file COPYING3. If not see #include "output.h" #include "ggc.h" #include "target.h" +#include "debug.h" #ifdef XCOFF_DEBUGGING_INFO |

