diff options
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h index c8f3994..6387227 100644 --- a/gcc/sched-int.h +++ b/gcc/sched-int.h @@ -20,6 +20,16 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef GCC_SCHED_INT_H +#define GCC_SCHED_INT_H + +/* For state_t. */ +#include "insn-attr.h" +/* For regset_head. */ +#include "basic-block.h" +/* For reg_note. */ +#include "rtl.h" + /* Pointer to data describing the current DFA state. */ extern state_t curr_state; @@ -394,3 +404,5 @@ extern int insn_cost (rtx, rtx, rtx); extern rtx get_unit_last_insn (int); extern int actual_hazard_this_instance (int, int, rtx, int, int); extern void print_insn (char *, rtx, int); + +#endif /* GCC_SCHED_INT_H */ |