diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-08-28 06:56:14 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-08-28 06:56:14 -0400 |
commit | f4bef7f6a62b1271a28656824ca835ca38966ac0 (patch) | |
tree | c25bf3240e5f98158333bbb5fdb3f18fb4d484f3 | |
parent | abc95ed36d4c350fa1e23c1d322fee9bd8a018fe (diff) | |
download | gcc-f4bef7f6a62b1271a28656824ca835ca38966ac0.zip gcc-f4bef7f6a62b1271a28656824ca835ca38966ac0.tar.gz gcc-f4bef7f6a62b1271a28656824ca835ca38966ac0.tar.bz2 |
(buffer, inpoint): Remove unused variables.
From-SVN: r10290
-rw-r--r-- | gcc/bi-lexer.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/bi-lexer.c b/gcc/bi-lexer.c index a78b30d..6601c52 100644 --- a/gcc/bi-lexer.c +++ b/gcc/bi-lexer.c @@ -1,5 +1,5 @@ /* Lexer for scanner of bytecode definition file. - Copyright (C) 1993 Free Software Foundation, Inc. + Copyright (C) 1993, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -22,10 +22,6 @@ Boston, MA 02111-1307, USA. */ #include "hconfig.h" #include "bi-parser.h" -/* Current read buffer and point */ -static char *buffer = NULL; -static char *inpoint = NULL; - /* Safely allocate NBYTES bytes of memory. Returns pointer to block of memory. */ |