diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2013-04-13 18:08:19 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2013-04-13 18:08:19 +0000 |
commit | c46f658021b4959764627ef3aa1932f57fb65d69 (patch) | |
tree | b7ea3826c56cd8e8c9754c91e848052348f46a09 /gcc/sched-int.h | |
parent | 9c9c61994c8bbf55135b41658581f6a9e2b96f60 (diff) | |
download | gcc-c46f658021b4959764627ef3aa1932f57fb65d69.zip gcc-c46f658021b4959764627ef3aa1932f57fb65d69.tar.gz gcc-c46f658021b4959764627ef3aa1932f57fb65d69.tar.bz2 |
sched-deps.c (deps_analyze_insn): Do not check for EH_REGION insn notes, they are emitted only just before final.
* sched-deps.c (deps_analyze_insn): Do not check for EH_REGION insn
notes, they are emitted only just before final.
* sched-int.h: Include insn-attr.h before checking INSN_SCHEDULING.
From-SVN: r197945
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h index 24a3414..9ab3374 100644 --- a/gcc/sched-int.h +++ b/gcc/sched-int.h @@ -21,10 +21,10 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_SCHED_INT_H #define GCC_SCHED_INT_H +#include "insn-attr.h" + #ifdef INSN_SCHEDULING -/* For state_t. */ -#include "insn-attr.h" #include "df.h" #include "basic-block.h" |