Commit b24a9e88 by Jeff Sturm Committed by Jeff Sturm

* except.c (duplicate_eh_regions): Test n_array[i] for NULL.

From-SVN: r44527
parent 6ea0279f
2001-07-31 Jeff Sturm <jsturm@one-point.com>
* except.c (duplicate_eh_regions): Test n_array[i] for NULL.
2001-07-31 matthew green <mrg@eterna.com.au>
* config.gcc (i386-*-netbsdelf): New description.
......
......@@ -1444,7 +1444,7 @@ duplicate_eh_regions (ifun, map)
cur->inner = root;
for (i = 1; i <= ifun_last_region_number; ++i)
if (n_array[i]->outer == NULL)
if (n_array[i] && n_array[i]->outer == NULL)
n_array[i]->outer = cur;
}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment