aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1997-11-09 08:30:34 +0000
committerJeff Law <law@gcc.gnu.org>1997-11-09 01:30:34 -0700
commit69f9c1f69e285e99979f61452634874744998481 (patch)
tree98c6ddd1920f9d238e0d3936e3c93e6ea0cb717a /gcc
parent1f8a9befe34df3e28cb50fa10ebd9877faa3d2c0 (diff)
downloadgcc-69f9c1f69e285e99979f61452634874744998481.zip
gcc-69f9c1f69e285e99979f61452634874744998481.tar.gz
gcc-69f9c1f69e285e99979f61452634874744998481.tar.bz2
decl.c (add_block_current_level): Delete.
* decl.c (add_block_current_level): Delete. * init.c (build_vec_delete_1): Delete build_block and add_block_current_level calls. From-SVN: r16388
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/cp/decl.c10
-rw-r--r--gcc/cp/init.c2
3 files changed, 6 insertions, 12 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index a933801..d4eed7b 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+Sun Nov 9 01:29:55 1997 Jim Wilson (wilson@cygnus.com)
+
+ * decl.c (add_block_current_level): Delete.
+ * init.c (build_vec_delete_1): Delete build_block and
+ add_block_current_level calls.
+
Fri Nov 7 11:57:28 1997 Jason Merrill <jason@yorick.cygnus.com>
* decl2.c (finish_file): Put back some code.
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index 77f5fd5..667f185 100644
--- a/gcc/cp/decl.c
+++ b/gcc/cp/decl.c
@@ -1398,16 +1398,6 @@ insert_block (block)
= chainon (current_binding_level->blocks, block);
}
-/* Add BLOCK to the current list of blocks for this binding contour. */
-
-void
-add_block_current_level (block)
- tree block;
-{
- current_binding_level->blocks
- = chainon (current_binding_level->blocks, block);
-}
-
/* Set the BLOCK node for the innermost scope
(the one we are currently in). */
diff --git a/gcc/cp/init.c b/gcc/cp/init.c
index 7332c7b..1ae838c 100644
--- a/gcc/cp/init.c
+++ b/gcc/cp/init.c
@@ -2772,8 +2772,6 @@ build_vec_delete_1 (base, maxindex, type, auto_delete_vec, auto_delete,
DECL_REGISTER (tbase) = 1;
controller = build (BIND_EXPR, void_type_node, tbase, NULL_TREE, NULL_TREE);
TREE_SIDE_EFFECTS (controller) = 1;
- block = build_block (tbase, NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE);
- add_block_current_level (block);
if (auto_delete != integer_zero_node
&& auto_delete != integer_two_node)