OSDN Git Service

* cp-tree.h (set_identifier_local_value): Provide prototype.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 17 Aug 1998 11:42:22 +0000 (11:42 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 17 Aug 1998 11:42:22 +0000 (11:42 +0000)
        * decl2.c (do_namespace_alias): Remove unused variables `binding'
        and `old'.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21786 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/Make-lang.in
gcc/cp/cp-tree.h
gcc/cp/decl2.c

index faf9b68..a356da2 100644 (file)
@@ -1,3 +1,10 @@
+Mon Aug 17 10:40:18 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * cp-tree.h (set_identifier_local_value): Provide prototype.
+
+       * decl2.c (do_namespace_alias): Remove unused variables `binding'
+       and `old'.
+
 Fri Aug 14 16:42:27 1998  Nick Clifton  <nickc@cygnus.com>
 
        * Makefile.in: Rename BBISON to BISON so that it can be properly
index be02cf1..2bea6a6 100644 (file)
@@ -103,9 +103,9 @@ g++-cross$(exeext): g++$(exeext)
        -rm -f g++-cross$(exeext)
        cp g++$(exeext) g++-cross$(exeext)
 
-cxxmain.o: cplus-dem.c demangle.h
+cxxmain.o: $(srcdir)/../libiberty/cplus-dem.c demangle.h
        rm -f cxxmain.c
-       $(LN_S) $(srcdir)/cplus-dem.c cxxmain.c
+       $(LN_S) $(srcdir)/../libiberty/cplus-dem.c cxxmain.c
        $(CC) -c -DMAIN $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
          -DVERSION=\"$(version)\" cxxmain.c
 
index fdcd704..52727a3 100644 (file)
@@ -2449,6 +2449,7 @@ extern tree perform_qualification_conversions   PROTO((tree, tree));
 
 /* decl.c */
 /* resume_binding_level */
+extern void set_identifier_local_value         PROTO((tree, tree));
 extern int global_bindings_p                   PROTO((void));
 extern int toplevel_bindings_p                 PROTO((void));
 extern void keep_next_level                    PROTO((void));
index 1176047..4ffba6f 100644 (file)
@@ -4619,9 +4619,6 @@ void
 do_namespace_alias (alias, namespace)
      tree alias, namespace;
 {
-  tree binding;
-  tree old;
-
   if (TREE_CODE (namespace) != NAMESPACE_DECL)
     {
       /* The parser did not find it, so it's not there. */