decl.c (insert_block): Removed unconditional `abort'.

Fri Sep 24 12:23:05 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* decl.c (insert_block): Removed unconditional `abort'.

From-SVN: r29657
This commit is contained in:
Glenn Chambers 1999-09-24 12:24:19 -07:00 committed by Alexandre Petit-Bianco
parent 98e7ae2962
commit ca6c74893b
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Sep 24 12:23:05 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* decl.c (insert_block): Removed unconditional `abort'.
Fri Sep 24 10:48:10 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* decl.c (builtin_function): No longer static. New arg CLASS. Arg

View File

@ -1371,7 +1371,6 @@ insert_block (block)
tree block;
{
TREE_USED (block) = 1;
abort ();
current_binding_level->blocks
= chainon (current_binding_level->blocks, block);
}