diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-25 18:55:03 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-03-25 18:55:03 +0000 |
commit | 138ea1759a540de0f58f2da444cf232f6d16804c (patch) | |
tree | 6eb0b76df363b9bb5c2ce4a3f7ee32f20756b93b | |
parent | 9dc12ed7b596469477228fb60686a1c332d5ed94 (diff) | |
download | ppe42-gcc-138ea1759a540de0f58f2da444cf232f6d16804c.tar.gz ppe42-gcc-138ea1759a540de0f58f2da444cf232f6d16804c.zip |
(gen_decl): Remove decl of unused variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6870 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/c-aux-info.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/c-aux-info.c b/gcc/c-aux-info.c index a22fc9047f1..0e7df9b0fa6 100644 --- a/gcc/c-aux-info.c +++ b/gcc/c-aux-info.c @@ -1,10 +1,8 @@ /* Generate information regarding function declarations and definitions based on information stored in GCC's tree structure. This code implements the -aux-info option. - - Written by Ron Guilmette (rfg@netcom.com). - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. + Copyright (C) 1989, 1991, 1994 Free Software Foundation, Inc. + Contributed by Ron Guilmette (rfg@netcom.com). This file is part of GNU CC. @@ -521,7 +519,6 @@ gen_decl (decl, is_func_definition, style) formals_style style; { char* ret_val; - char* outer_modifier = ""; if (DECL_NAME (decl)) ret_val = IDENTIFIER_POINTER (DECL_NAME (decl)); |