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

From-SVN: r195074
This commit is contained in:
Mike Stump 2013-01-10 01:17:13 +00:00 committed by Mike Stump
parent 829a05e398
commit 6f557e0e1b
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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)
{