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
0705d602
Commit
0705d602
authored
Sep 01, 2004
by
Richard Kenner
Committed by
Richard Kenner
Sep 01, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa.c (propagate_into_addr): Properly test for LHR.
From-SVN: r86934
parent
78ad8fbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
gcc/ChangeLog
+2
-0
gcc/tree-ssa.c
+3
-3
No files found.
gcc/ChangeLog
View file @
0705d602
2004-09-01 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2004-09-01 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* tree-ssa.c (propagate_into_addr): Properly test for LHR.
* doc/c-tree.texi: Document new operands for ARRAY_REF and
* doc/c-tree.texi: Document new operands for ARRAY_REF and
COMPONENT_REF.
COMPONENT_REF.
...
...
gcc/tree-ssa.c
View file @
0705d602
...
@@ -871,9 +871,9 @@ propagate_into_addr (tree stmt, tree var, tree *x, tree repl)
...
@@ -871,9 +871,9 @@ propagate_into_addr (tree stmt, tree var, tree *x, tree repl)
return
;
return
;
addr_var
=
TREE_OPERAND
(
repl
,
0
);
addr_var
=
TREE_OPERAND
(
repl
,
0
);
while
(
TREE_CODE
(
*
x
)
==
ARRAY_REF
while
(
handled_component_p
(
*
x
)
||
TREE_CODE
(
*
x
)
==
COMPONENT_REF
||
TREE_CODE
(
*
x
)
==
REALPART_EXPR
||
TREE_CODE
(
*
x
)
==
BIT_FIELD_REF
)
||
TREE_CODE
(
*
x
)
==
IMAGPART_EXPR
)
x
=
&
TREE_OPERAND
(
*
x
,
0
);
x
=
&
TREE_OPERAND
(
*
x
,
0
);
if
(
TREE_CODE
(
*
x
)
!=
INDIRECT_REF
if
(
TREE_CODE
(
*
x
)
!=
INDIRECT_REF
...
...
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