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
e21fa13a
Commit
e21fa13a
authored
May 06, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(stupid_life_analysis): Check the usage information on CALL_INSNs.
From-SVN: r7249
parent
d7e09326
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
gcc/stupid.c
+8
-1
No files found.
gcc/stupid.c
View file @
e21fa13a
...
...
@@ -214,6 +214,8 @@ stupid_life_analysis (f, nregs, file)
for
(
i
=
0
;
i
<
FIRST_PSEUDO_REGISTER
;
i
++
)
if
(
call_used_regs
[
i
])
regs_live
[
i
]
=
0
;
stupid_mark_refs
(
CALL_INSN_FUNCTION_USAGE
(
insn
),
insn
);
}
/* Update which hard regs are currently live
...
...
@@ -385,10 +387,15 @@ static void
stupid_mark_refs
(
x
,
insn
)
rtx
x
,
insn
;
{
register
RTX_CODE
code
=
GET_CODE
(
x
)
;
register
RTX_CODE
code
;
register
char
*
fmt
;
register
int
regno
,
i
;
if
(
x
==
0
)
return
;
code
=
GET_CODE
(
x
);
if
(
code
==
SET
||
code
==
CLOBBER
)
{
if
(
SET_DEST
(
x
)
!=
0
&&
GET_CODE
(
SET_DEST
(
x
))
==
REG
)
...
...
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