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
b2433fcd
Commit
b2433fcd
authored
Apr 22, 2000
by
Richard Henderson
Committed by
Richard Henderson
Apr 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (mark_used_reg): Hack around rs6000 eliminable pic reg.
From-SVN: r33342
parent
6f81b1ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
gcc/ChangeLog
+4
-0
gcc/flow.c
+6
-3
No files found.
gcc/ChangeLog
View file @
b2433fcd
2000
-
04
-
22
Richard
Henderson
<
rth
@cygnus
.
com
>
*
flow
.
c
(
mark_used_reg
)
:
Hack
around
rs6000
eliminable
pic
reg
.
2000
-
04
-
22
Richard
Henderson
<
rth
@cygnus
.
com
>
*
diagnostic
.
c
(
init_output_buffer
)
:
Don
'
t
initialize
format_args
.
(
output_clear
)
:
Likewise
.
(
output_printf
)
:
Use
va_copy
.
...
...
gcc/flow.c
View file @
b2433fcd
...
...
@@ -4473,12 +4473,15 @@ mark_used_reg (pbi, reg, cond, insn)
be eliminated, reload will set it live at that point.
Otherwise, record that this function uses this register. */
/* ??? The PPC backend tries to "eliminate" on the pic
register to itself. This should be fixed. In the mean
time, hack around it. */
if
(
!
TEST_HARD_REG_BIT
(
elim_reg_set
,
regno
))
if
(
!
(
TEST_HARD_REG_BIT
(
elim_reg_set
,
regno
)
&&
(
regno
==
FRAME_POINTER_REGNUM
||
regno
==
ARG_POINTER_REGNUM
)))
{
int
n
=
HARD_REGNO_NREGS
(
regno
,
GET_MODE
(
reg
));
if
(
n
==
0
)
n
=
1
;
do
regs_ever_live
[
regno
+
--
n
]
=
1
;
while
(
n
>
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