This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A prototype patch for integrate.c


Both pushdecl and poplevel are declared in c-tree.h and tree.h. Should
we only keep one declaration?

-- 
H.J. Lu (hjl@gnu.org)
---
Sun Jun 21 09:53:28 1998  H.J. Lu  (hjl@gnu.org)

	* integrate.c (pushdecl, poplevel): Remove declaration.

Index: integrate.c
===================================================================
RCS file: /home/work/cvs/gnu/egcs/gcc/integrate.c,v
retrieving revision 1.1.1.18
diff -u -p -r1.1.1.18 integrate.c
--- integrate.c	1998/06/09 01:12:13	1.1.1.18
+++ integrate.c	1998/06/09 01:16:33
@@ -44,9 +44,6 @@ Boston, MA 02111-1307, USA.  */
 
 extern struct obstack *function_maybepermanent_obstack;
 
-extern tree pushdecl ();
-extern tree poplevel ();
-
 /* Similar, but round to the next highest integer that meets the
    alignment.  */
 #define CEIL_ROUND(VALUE,ALIGN)	(((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]