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
96f1f3fa
Commit
96f1f3fa
authored
Oct 29, 2013
by
Eric Botcazou
Committed by
Eric Botcazou
Oct 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (expand_expr_real_1) <case MEM>: Eliminate small redundancy.
From-SVN: r204155
parent
f80b28a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/expr.c
+1
-1
No files found.
gcc/ChangeLog
View file @
96f1f3fa
2013
-
10
-
29
Eric
Botcazou
<
ebotcazou
@
adacore
.
com
>
*
expr
.
c
(
expand_expr_real_1
)
<
case
MEM
>:
Eliminate
small
redundancy
.
2013
-
10
-
29
David
Malcolm
<
dmalcolm
@
redhat
.
com
>
*
doc
/
gty
.
texi
(
"Inheritance and GTY"
):
Make
it
clear
that
gcc/expr.c
View file @
96f1f3fa
...
...
@@ -9648,8 +9648,8 @@ expand_expr_real_1 (tree exp, rtx target, enum machine_mode tmode,
rtx
off
=
immed_double_int_const
(
mem_ref_offset
(
exp
),
address_mode
);
op0
=
simplify_gen_binary
(
PLUS
,
address_mode
,
op0
,
off
);
op0
=
memory_address_addr_space
(
mode
,
op0
,
as
);
}
op0
=
memory_address_addr_space
(
mode
,
op0
,
as
);
temp
=
gen_rtx_MEM
(
mode
,
op0
);
set_mem_attributes
(
temp
,
exp
,
0
);
set_mem_addr_space
(
temp
,
as
);
...
...
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