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
4dd24d60
Commit
4dd24d60
authored
Mar 05, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_{pro,epi}log): Round var size to quadword boundary.
From-SVN: r6699
parent
acd94aaf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
gcc/config/alpha/alpha.c
+6
-4
No files found.
gcc/config/alpha/alpha.c
View file @
4dd24d60
...
...
@@ -1207,10 +1207,11 @@ output_prolog (file, size)
FILE
*
file
;
int
size
;
{
HOST_WIDE_INT
frame_size
=
((
size
+
current_function_outgoing_args_size
HOST_WIDE_INT
vars_size
=
(
size
+
7
)
&
~
7
;
HOST_WIDE_INT
frame_size
=
((
vars_size
+
current_function_outgoing_args_size
+
current_function_pretend_args_size
+
alpha_sa_size
()
+
15
)
&
~
15
);
HOST_WIDE_INT
reg_offset
=
size
+
current_function_outgoing_args_size
;
HOST_WIDE_INT
reg_offset
=
vars_
size
+
current_function_outgoing_args_size
;
HOST_WIDE_INT
start_reg_offset
=
reg_offset
;
HOST_WIDE_INT
actual_start_reg_offset
=
start_reg_offset
;
rtx
insn
;
...
...
@@ -1408,10 +1409,11 @@ output_epilog (file, size)
int
size
;
{
rtx
insn
=
get_last_insn
();
HOST_WIDE_INT
frame_size
=
((
size
+
current_function_outgoing_args_size
HOST_WIDE_INT
vars_size
=
(
size
+
7
)
&
~
7
;
HOST_WIDE_INT
frame_size
=
((
vars_size
+
current_function_outgoing_args_size
+
current_function_pretend_args_size
+
alpha_sa_size
()
+
15
)
&
~
15
);
HOST_WIDE_INT
reg_offset
=
size
+
current_function_outgoing_args_size
;
HOST_WIDE_INT
reg_offset
=
vars_
size
+
current_function_outgoing_args_size
;
HOST_WIDE_INT
frame_size_from_reg_save
=
frame_size
-
reg_offset
;
int
reg_offset_base_reg
=
30
;
int
i
;
...
...
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