aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-02-13 18:19:26 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-02-13 18:19:26 -0500
commit7ac09502bd6948b88ea271c4f24118d9b06fb2d8 (patch)
treec425788d63982b9afa6d80395686dc050d59605a /gcc
parentf33f79c0fdbc5eded8e50cfc32b8b5991a688dcd (diff)
downloadgcc-7ac09502bd6948b88ea271c4f24118d9b06fb2d8.zip
gcc-7ac09502bd6948b88ea271c4f24118d9b06fb2d8.tar.gz
gcc-7ac09502bd6948b88ea271c4f24118d9b06fb2d8.tar.bz2
#include flags.h
#include flags.h (output_function_prologue, function_epilogue): Remove declarations of call_used_regs and frame_pointer_needed. From-SVN: r11269
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/pdp11/pdp11.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c
index ec1e080..19b4148 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;