diff options
author | manu <manu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-30 17:12:36 +0000 |
---|---|---|
committer | manu <manu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-30 17:12:36 +0000 |
commit | d7091a76ce2d22e8be9c3e2a5d6fd91d1b4ad46d (patch) | |
tree | 6809eeec78ac6bc094b49d7b9412573e5f8f762c /gcc/sel-sched.c | |
parent | 6f881d7c78736a6d0543547cf41d4a805bc90efb (diff) | |
download | gcc-d7091a76ce2d22e8be9c3e2a5d6fd91d1b4ad46d.tar.gz |
2010-06-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
* toplev.h (_fatal_insn_not_found, _fatal_insn): Move declarations
to rtl.h.
(error_for_asm, warning_for_asm): Move declarations to rtl-error.h.
* rtl.h (_fatal_insn_not_found, _fatal_insn): Move declarations
here.
* rtl-error.h: New.
* regrename.c: Do not include toplev.h. Include rtl-error.h.
* rtl-error.c: Likewise.
* reload.c: Likewise.
* recog.c: Likewise.
* sel-sched.c: Likewise.
* function.c: Likewise.
* reg-stack.c: Likewise.
* cfgrtl.c: Likewise.
* reload1.c: Likewise.
* final.c: Include rtl-error.
* Makefile.in: Adjust dependencies.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161617 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sel-sched.c')
-rw-r--r-- | gcc/sel-sched.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/sel-sched.c b/gcc/sel-sched.c index 78816252997..3a86e22feef 100644 --- a/gcc/sel-sched.c +++ b/gcc/sel-sched.c @@ -21,8 +21,7 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "tm.h" -#include "toplev.h" -#include "rtl.h" +#include "rtl-error.h" #include "tm_p.h" #include "hard-reg-set.h" #include "regs.h" @@ -31,7 +30,6 @@ along with GCC; see the file COPYING3. If not see #include "insn-config.h" #include "insn-attr.h" #include "except.h" -#include "toplev.h" #include "recog.h" #include "params.h" #include "target.h" |