* tree-eh.c (mark_reachable_handlers): Fix typo in assert.

From-SVN: r229497
This commit is contained in:
Richard Henderson 2015-10-28 11:15:20 -07:00 committed by Richard Henderson
parent 7bc2eabe25
commit 3754c8fe36
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2015-10-28 Richard Henderson <rth@redhat.com>
* tree-eh.c (mark_reachable_handlers): Fix typo in assert.
2015-10-05 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
PR target/67839

View file

@ -3857,7 +3857,7 @@ mark_reachable_handlers (sbitmap *r_reachablep, sbitmap *lp_reachablep)
tree rt = gimple_call_arg (stmt, i);
HOST_WIDE_INT ri = tree_to_shwi (rt);
gcc_assert (ri = (int)ri);
gcc_assert (ri == (int)ri);
bitmap_set_bit (r_reachable, ri);
}
break;