diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-06 16:57:53 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-06 16:57:53 +0000 |
commit | 447f6a7fe8e74964aa7968437e65fa5a4c83f3b5 (patch) | |
tree | ca515252204eb7227888e0361680bc2601da6c70 /gcc/local-alloc.c | |
parent | 3ca5a306e74252426e0bcc97ac7224b6f0fbbe2c (diff) | |
download | gcc-447f6a7fe8e74964aa7968437e65fa5a4c83f3b5.tar.gz |
* profile.c (branch_prob): Remove unused variable insn.
* Makefile.in (local-alloc.o): Add dependency on except.h.
* local-alloc.c: Include except.h for can_throw_internal prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44665 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index c987190698e..efc31597908 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -1,6 +1,6 @@ /* Allocate registers within a basic block, for GNU compiler. Copyright (C) 1987, 1988, 1991, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000 Free Software Foundation, Inc. + 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU CC. @@ -73,6 +73,7 @@ Boston, MA 02111-1307, USA. */ #include "recog.h" #include "output.h" #include "toplev.h" +#include "except.h" /* Next quantity number available for allocation. */ |