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
33afb1b7
Commit
33afb1b7
authored
23 years ago
by
Richard Kenner
Committed by
Richard Kenner
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* f/com.c (ffecom_1): Properly handle TREE_READONLY for INDIRECT_REF.
From-SVN: r47667
parent
4e3f4812
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/f/ChangeLog
+4
-0
gcc/f/com.c
+3
-1
No files found.
gcc/f/ChangeLog
View file @
33afb1b7
Wed
Dec
5
06
:
49
:
21
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
com
.
c
(
ffecom_1
)
:
Properly
handle
TREE_READONLY
for
INDIRECT_REF
.
Mon
Dec
3
18
:
56
:
04
2001
Neil
Booth
<
neil
@daikokuya
.
demon
.
co
.
uk
>
*
com
.
c
:
Remove
leading
capital
from
diagnostic
messages
,
as
...
...
This diff is collapsed.
Click to expand it.
gcc/f/com.c
View file @
33afb1b7
...
...
@@ -9556,8 +9556,10 @@ ffecom_1 (enum tree_code code, tree type, tree node)
if
(
TREE_SIDE_EFFECTS
(
node
))
TREE_SIDE_EFFECTS
(
item
)
=
1
;
if
(
(
code
==
ADDR_EXPR
)
&&
staticp
(
node
))
if
(
code
==
ADDR_EXPR
&&
staticp
(
node
))
TREE_CONSTANT
(
item
)
=
1
;
else
if
(
code
==
INDIRECT_REF
)
TREE_READONLY
(
item
)
=
TYPE_READONLY
(
type
);
return
fold
(
item
);
}
...
...
This diff is collapsed.
Click to expand it.
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