diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-24 17:31:01 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-24 17:31:01 +0000 |
commit | 8b1bf73dffe1d77872c788b80e54dbf3f3416596 (patch) | |
tree | 20ebfce4079d96a99e5aad4fee912e974033e1fa /gcc/libfuncs.h | |
parent | 6cdd383ad344227754c65ef8d731802197890a82 (diff) | |
download | gcc-8b1bf73dffe1d77872c788b80e54dbf3f3416596.tar.gz |
Tidy some include usage + dependencies
The dwarf2out.c and lto-streamer-in.c files didn't need
libfuncs.h in the first place. The libfuncs.h file will
grow a use of an optab enumeration and thus will require
including optabs.h.
* libfuncs.h: Include optabs.h.
* dwarf2out.c, lto-streamer.in.c: Don't include libfuncs.h.
* Makefile.in (LIBFUNCS_H): Add OPTABS_H.
(lto-streamer-in.o, dwarf2out.o): Update deps.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@189817 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libfuncs.h')
-rw-r--r-- | gcc/libfuncs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/libfuncs.h b/gcc/libfuncs.h index b01aed3b9d3..bac49182bbf 100644 --- a/gcc/libfuncs.h +++ b/gcc/libfuncs.h @@ -21,6 +21,7 @@ along with GCC; see the file COPYING3. If not see #define GCC_LIBFUNCS_H #include "hashtab.h" +#include "optabs.h" /* Enumeration of indexes into libfunc_table. */ enum libfunc_index |