summaryrefslogtreecommitdiff
path: root/gcc/gen-protos.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gen-protos.c')
-rw-r--r--gcc/gen-protos.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c
index ee8f0a17cd1..453b7298046 100644
--- a/gcc/gen-protos.c
+++ b/gcc/gen-protos.c
@@ -21,7 +21,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "coretypes.h"
#include "tm.h"
#include "scan.h"
-#undef abort
int verbose = 0;
const char *progname;
@@ -48,8 +47,7 @@ add_hash (const char *fname)
for (;;)
{
i = (i+1) % HASH_SIZE;
- if (i == i0)
- abort ();
+ gcc_assert (i != i0);
if (hash_tab[i] == 0)
break;
}