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
189e03e3
Commit
189e03e3
authored
May 02, 1997
by
David Edelsohn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename ALIGN to RS6000_ALIGN to protect namespace
From-SVN: r14011
parent
ed33106f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/config/rs6000/rs6000.c
+4
-4
No files found.
gcc/config/rs6000/rs6000.c
View file @
189e03e3
...
...
@@ -3088,10 +3088,10 @@ rs6000_stack_info ()
info_ptr
->
reg_size
=
reg_size
;
info_ptr
->
fixed_size
=
RS6000_SAVE_AREA
;
info_ptr
->
varargs_size
=
RS6000_VARARGS_AREA
;
info_ptr
->
vars_size
=
ALIGN
(
get_frame_size
(),
8
);
info_ptr
->
parm_size
=
ALIGN
(
current_function_outgoing_args_size
,
8
);
info_ptr
->
vars_size
=
RS6000_
ALIGN
(
get_frame_size
(),
8
);
info_ptr
->
parm_size
=
RS6000_
ALIGN
(
current_function_outgoing_args_size
,
8
);
info_ptr
->
fpmem_size
=
(
info_ptr
->
fpmem_p
)
?
8
:
0
;
info_ptr
->
save_size
=
ALIGN
(
info_ptr
->
fp_size
info_ptr
->
save_size
=
RS6000_
ALIGN
(
info_ptr
->
fp_size
+
info_ptr
->
gp_size
+
info_ptr
->
cr_size
+
info_ptr
->
lr_size
...
...
@@ -3105,7 +3105,7 @@ rs6000_stack_info ()
+
info_ptr
->
varargs_size
+
info_ptr
->
fixed_size
);
info_ptr
->
total_size
=
ALIGN
(
total_raw_size
,
ABI_STACK_BOUNDARY
/
BITS_PER_UNIT
);
info_ptr
->
total_size
=
RS6000_
ALIGN
(
total_raw_size
,
ABI_STACK_BOUNDARY
/
BITS_PER_UNIT
);
/* Determine if we need to allocate any stack frame.
For AIX We need to push the stack if a frame pointer is needed (because
...
...
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