aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/tree.c
diff options
context:
space:
mode:
authorJason Merrill <jason@yorick.cygnus.com>1999-01-26 02:33:46 +0000
committerJason Merrill <jason@gcc.gnu.org>1999-01-25 21:33:46 -0500
commit0034cf7299679aa804e365e087d390b9cabb646c (patch)
treecc106c8c9a941c950605f1f240cd3bde24d864d6 /gcc/cp/tree.c
parent4a6330ac06a5c1756bf44aa043fd8e0d519beacc (diff)
downloadgcc-0034cf7299679aa804e365e087d390b9cabb646c.zip
gcc-0034cf7299679aa804e365e087d390b9cabb646c.tar.gz
gcc-0034cf7299679aa804e365e087d390b9cabb646c.tar.bz2
tree.c (equal_functions): Fix name in prototype.
* tree.c (equal_functions): Fix name in prototype. * decl.c (push_local_binding): Add FLAGS argument. (pushdecl, push_overloaded_decl): Pass it. * decl2.c (do_local_using_decl): Likewise. * cp-tree.h: Adjust prototype. * decl.c (poplevel): Fix logic. From-SVN: r24869
Diffstat (limited to 'gcc/cp/tree.c')
-rw-r--r--gcc/cp/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c
index d318d1b..3e5048f 100644
--- a/gcc/cp/tree.c
+++ b/gcc/cp/tree.c
@@ -41,7 +41,7 @@ static tree list_hash_lookup PROTO((int, int, int, int, tree, tree,
static void propagate_binfo_offsets PROTO((tree, tree));
static int avoid_overlap PROTO((tree, tree));
static int lvalue_p_1 PROTO((tree, int));
-static int equal_function PROTO((tree, tree));
+static int equal_functions PROTO((tree, tree));
#define CEIL(x,y) (((x) + (y) - 1) / (y))