diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-23 20:09:26 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-23 20:09:26 +0000 |
commit | 1ef08c6373cde5339b3d4db95057ee148ea659cb (patch) | |
tree | caccaf3ec69327541f4df3fc536a2e0bb6d6fca2 /gcc | |
parent | 6adb4e3a29c612cc99a26a54364917e3a1709e8c (diff) | |
download | gcc-1ef08c6373cde5339b3d4db95057ee148ea659cb.zip gcc-1ef08c6373cde5339b3d4db95057ee148ea659cb.tar.gz gcc-1ef08c6373cde5339b3d4db95057ee148ea659cb.tar.bz2 |
install EH code
From-SVN: r12550
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-pragma.c | 1 | ||||
-rw-r--r-- | gcc/emit-rtl.c | 1 | ||||
-rw-r--r-- | gcc/function.c | 1 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 1 | ||||
-rw-r--r-- | gcc/stor-layout.c | 1 | ||||
-rw-r--r-- | gcc/tree.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index 2c06792..886c67b 100644 --- a/gcc/c-pragma.c +++ b/gcc/c-pragma.c @@ -21,6 +21,7 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> #include "config.h" #include "tree.h" +#include "except.h" #include "function.h" #include "defaults.h" #include "c-pragma.h" diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 85ba0ad..aaebc6f 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -43,6 +43,7 @@ Boston, MA 02111-1307, USA. */ #include "rtl.h" #include "tree.h" #include "flags.h" +#include "except.h" #include "function.h" #include "expr.h" #include "regs.h" diff --git a/gcc/function.c b/gcc/function.c index 275685e..7950e1e 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -43,6 +43,7 @@ Boston, MA 02111-1307, USA. */ #include "rtl.h" #include "tree.h" #include "flags.h" +#include "except.h" #include "function.h" #include "insn-flags.h" #include "expr.h" diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index be52fc6..bb9329d 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -46,6 +46,7 @@ Boston, MA 02111-1307, USA. */ #include "flags.h" #include "objc-act.h" #include "input.h" +#include "except.h" #include "function.h" diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 691cb50..8a23489 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */ #include "tree.h" #include "flags.h" +#include "except.h" #include "function.h" #define CEIL(x,y) (((x) + (y) - 1) / (y)) @@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #include "flags.h" #include "tree.h" +#include "except.h" #include "function.h" #include "obstack.h" #ifdef __STDC__ |