diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2010-06-30 17:12:36 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2010-06-30 17:12:36 +0000 |
commit | 0cbd999369498655f6832bbf9e0c8001a5226411 (patch) | |
tree | 6809eeec78ac6bc094b49d7b9412573e5f8f762c /gcc/cfgrtl.c | |
parent | b1570cac5432acd5b92b2c258675842966653d22 (diff) | |
download | gcc-0cbd999369498655f6832bbf9e0c8001a5226411.zip gcc-0cbd999369498655f6832bbf9e0c8001a5226411.tar.gz gcc-0cbd999369498655f6832bbf9e0c8001a5226411.tar.bz2 |
toplev.h (_fatal_insn_not_found, [...]): Move declarations to rtl.h.
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.
From-SVN: r161617
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index bf61737..3138281 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -42,7 +42,6 @@ along with GCC; see the file COPYING3. If not see #include "coretypes.h" #include "tm.h" #include "tree.h" -#include "rtl.h" #include "hard-reg-set.h" #include "basic-block.h" #include "regs.h" @@ -50,7 +49,7 @@ along with GCC; see the file COPYING3. If not see #include "output.h" #include "function.h" #include "except.h" -#include "toplev.h" +#include "rtl-error.h" #include "tm_p.h" #include "obstack.h" #include "insn-attr.h" |