Commit 6f557e0e by Mike Stump Committed by Mike Stump

* dse.c (record_store): Remove unnecessary assert.

From-SVN: r195074
parent 829a05e3
2013-01-09 Mike Stump <mikestump@comcast.net>
* dse.c (record_store): Remove unnecessary assert.
2013-01-09 Jan Hubicka <jh@suse.cz>
PR tree-optimization/55569
......
......@@ -1495,10 +1495,7 @@ record_store (rtx body, bb_info_t bb_info)
if (GET_MODE (mem) == BLKmode)
width = MEM_SIZE (mem);
else
{
width = GET_MODE_SIZE (GET_MODE (mem));
gcc_assert ((unsigned) width <= HOST_BITS_PER_WIDE_INT);
}
width = GET_MODE_SIZE (GET_MODE (mem));
if (spill_alias_set)
{
......
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