From 7ac09502bd6948b88ea271c4f24118d9b06fb2d8 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 13 Feb 1996 18:19:26 -0500 Subject: [PATCH] #include flags.h #include flags.h (output_function_prologue, function_epilogue): Remove declarations of call_used_regs and frame_pointer_needed. From-SVN: r11269 --- gcc/config/pdp11/pdp11.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c index ec1e080661f..19b41485e7d 100644 --- a/gcc/config/pdp11/pdp11.c +++ b/gcc/config/pdp11/pdp11.c @@ -1,5 +1,5 @@ /* Subroutines for gcc2 for pdp11. - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. Contributed by Michael K. Gschwind (mike@vlsivie.tuwien.ac.at). This file is part of GNU CC. @@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */ #include "insn-flags.h" #include "output.h" #include "insn-attr.h" +#include "flags.h" /* #define FPU_REG_P(X) ((X)>=8 && (X)<14) @@ -97,9 +98,6 @@ output_function_prologue(stream, size) FILE *stream; int size; { - extern char call_used_regs[]; - extern int frame_pointer_needed; - int fsize = ((size) + 1) & ~1; int regno, nregs, i; int offset = 0; @@ -196,7 +194,6 @@ output_function_epilogue(stream, size) FILE *stream; int size; { - extern char call_used_regs[]; extern int may_call_alloca; int fsize = ((size) + 1) & ~1;