summaryrefslogtreecommitdiff
path: root/gcc/dse.c
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2013-01-10 01:17:13 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2013-01-10 01:17:13 +0000
commite4209874482cd754844f7a9cf8b5e60392e09cf2 (patch)
tree8ca6a754c4a3fca15bf9a62af6e09e79d999ef64 /gcc/dse.c
parent36a2d882e3992289ce6a9b8022d413a91e379e8e (diff)
downloadgcc-e4209874482cd754844f7a9cf8b5e60392e09cf2.tar.gz
* dse.c (record_store): Remove unnecessary assert.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dse.c')
-rw-r--r--gcc/dse.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/dse.c b/gcc/dse.c
index 6a530ca7d26..34581ccd203 100644
--- a/gcc/dse.c
+++ b/gcc/dse.c
@@ -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)
{