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
b367c416
Commit
b367c416
authored
Dec 30, 2000
by
Richard Kenner
Committed by
Richard Kenner
Dec 30, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* calls.c (calls_function_1, case CONSTRUCTOR): New case.
From-SVN: r38560
parent
1da68f56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
gcc/ChangeLog
+2
-0
gcc/calls.c
+11
-0
No files found.
gcc/ChangeLog
View file @
b367c416
2000-12-30 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2000-12-30 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* calls.c (calls_function_1, case CONSTRUCTOR): New case.
* alias.c (alias_sets_conflict_p): New function.
* alias.c (alias_sets_conflict_p): New function.
(mems_in_disjoint_alias_sets_p): Use it.
(mems_in_disjoint_alias_sets_p): Use it.
(readonly_fields_p): Moved from expr.c; check for record type.
(readonly_fields_p): Moved from expr.c; check for record type.
...
...
gcc/calls.c
View file @
b367c416
...
@@ -297,6 +297,17 @@ calls_function_1 (exp, which)
...
@@ -297,6 +297,17 @@ calls_function_1 (exp, which)
break
;
break
;
case
CONSTRUCTOR
:
{
tree
tem
;
for
(
tem
=
CONSTRUCTOR_ELTS
(
exp
);
tem
!=
0
;
tem
=
TREE_CHAIN
(
tem
))
if
(
calls_function_1
(
TREE_VALUE
(
tem
),
which
))
return
1
;
}
return
0
;
case
SAVE_EXPR
:
case
SAVE_EXPR
:
if
(
SAVE_EXPR_RTL
(
exp
)
!=
0
)
if
(
SAVE_EXPR_RTL
(
exp
)
!=
0
)
return
0
;
return
0
;
...
...
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