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
99561ab6
Commit
99561ab6
authored
Mar 07, 1996
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cd config/pa
* pa.c: Fix misc small typos/thinkos in recent changes. From-SVN: r11489
parent
077fbf9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gcc/config/pa/pa.c
+5
-4
No files found.
gcc/config/pa/pa.c
View file @
99561ab6
...
@@ -2068,7 +2068,7 @@ compute_frame_size (size, fregs_live)
...
@@ -2068,7 +2068,7 @@ compute_frame_size (size, fregs_live)
if
(
fregs_live
)
if
(
fregs_live
)
*
fregs_live
=
1
;
*
fregs_live
=
1
;
fsize
+=
4
*
(
i
=
46
);
fsize
+=
4
*
(
i
-
46
);
break
;
break
;
}
}
...
@@ -2422,6 +2422,7 @@ hppa_expand_prologue()
...
@@ -2422,6 +2422,7 @@ hppa_expand_prologue()
/* Floating point register store. */
/* Floating point register store. */
if
(
save_fregs
)
if
(
save_fregs
)
{
{
int
found_one
=
0
;
/* First get the frame or stack pointer to the start of the FP register
/* First get the frame or stack pointer to the start of the FP register
save area. */
save area. */
...
@@ -2433,7 +2434,6 @@ hppa_expand_prologue()
...
@@ -2433,7 +2434,6 @@ hppa_expand_prologue()
/* Now actually save the FP registers. */
/* Now actually save the FP registers. */
for
(
i
=
66
;
i
>=
48
;
i
-=
2
)
for
(
i
=
66
;
i
>=
48
;
i
-=
2
)
{
{
int
found_one
=
0
;
if
(
regs_ever_live
[
i
]
||
regs_ever_live
[
i
+
1
]
if
(
regs_ever_live
[
i
]
||
regs_ever_live
[
i
+
1
]
||
found_one
)
||
found_one
)
{
{
...
@@ -2599,9 +2599,9 @@ hppa_expand_epilogue ()
...
@@ -2599,9 +2599,9 @@ hppa_expand_epilogue ()
}
}
else
else
{
{
int
found_one
=
0
;
for
(
i
=
18
,
offset
=
local_fsize
-
actual_fsize
;
i
>=
3
;
i
--
)
for
(
i
=
18
,
offset
=
local_fsize
-
actual_fsize
;
i
>=
3
;
i
--
)
{
{
int
found_one
=
0
;
if
(
regs_ever_live
[
i
]
&&
!
call_used_regs
[
i
]
if
(
regs_ever_live
[
i
]
&&
!
call_used_regs
[
i
]
||
found_one
)
||
found_one
)
{
{
...
@@ -2626,6 +2626,8 @@ hppa_expand_epilogue ()
...
@@ -2626,6 +2626,8 @@ hppa_expand_epilogue ()
/* FP register restores. */
/* FP register restores. */
if
(
save_fregs
)
if
(
save_fregs
)
{
{
int
found_one
=
0
;
/* Adjust the register to index off of. */
/* Adjust the register to index off of. */
if
(
frame_pointer_needed
)
if
(
frame_pointer_needed
)
set_reg_plus_d
(
1
,
FRAME_POINTER_REGNUM
,
offset
);
set_reg_plus_d
(
1
,
FRAME_POINTER_REGNUM
,
offset
);
...
@@ -2635,7 +2637,6 @@ hppa_expand_epilogue ()
...
@@ -2635,7 +2637,6 @@ hppa_expand_epilogue ()
/* Actually do the restores now. */
/* Actually do the restores now. */
for
(
i
=
66
;
i
>=
48
;
i
-=
2
)
for
(
i
=
66
;
i
>=
48
;
i
-=
2
)
{
{
int
found_one
=
0
;
if
(
regs_ever_live
[
i
]
||
regs_ever_live
[
i
+
1
])
if
(
regs_ever_live
[
i
]
||
regs_ever_live
[
i
+
1
])
{
{
found_one
=
1
;
found_one
=
1
;
...
...
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