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
63cc239c
Commit
63cc239c
authored
Mar 06, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(stupid_mark_refs): If setting reg_where_dead, set regs_live so we
don't later clobber it. From-SVN: r6705
parent
4d3067db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/stupid.c
+5
-2
No files found.
gcc/stupid.c
View file @
63cc239c
/* Dummy data flow analysis for GNU compiler in nonoptimizing mode.
Copyright (C) 1987, 1991 Free Software Foundation, Inc.
Copyright (C) 1987, 1991
, 1994
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -476,7 +476,10 @@ stupid_mark_refs (x, insn)
insn so that it will conflict with any other outputs of
this insn. */
if
(
reg_where_dead
[
regno
]
<
where_born
+
2
)
reg_where_dead
[
regno
]
=
where_born
+
2
;
{
reg_where_dead
[
regno
]
=
where_born
+
2
;
regs_live
[
regno
]
=
1
;
}
/* Count the refs of this reg. */
reg_n_refs
[
regno
]
++
;
...
...
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