projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
829a05e
)
* dse.c (record_store): Remove unnecessary assert.
author
Mike Stump
<mikestump@comcast.net>
Thu, 10 Jan 2013 01:17:13 +0000
(
01:17
+0000)
committer
Mike Stump
<mrs@gcc.gnu.org>
Thu, 10 Jan 2013 01:17:13 +0000
(
01:17
+0000)
From-SVN: r195074
gcc/ChangeLog
patch
|
blob
|
history
gcc/dse.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index ddfbcffad435ca3f11872c36f8991d8c4e0a4ee2..f3b5f518e934d629783e86830090024bb77d63ef 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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
diff --git
a/gcc/dse.c
b/gcc/dse.c
index 6a530ca7d265d18268ad751b8486f52cffe180b8..34581ccd2037e1b328980b2d280d95582fcced33 100644
(file)
--- 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)
{