Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
6f557e0e
Commit
6f557e0e
authored
Jan 10, 2013
by
Mike Stump
Committed by
Mike Stump
Jan 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dse.c (record_store): Remove unnecessary assert.
From-SVN: r195074
parent
829a05e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/ChangeLog
+4
-0
gcc/dse.c
+1
-4
No files found.
gcc/ChangeLog
View file @
6f557e0e
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
...
...
gcc/dse.c
View file @
6f557e0e
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment