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
ce407aa9
Commit
ce407aa9
authored
Mar 05, 2004
by
Paul Brook
Committed by
Paul Brook
Mar 05, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* function.c (assign_parms): Include pretend alignment offset.
From-SVN: r78973
parent
019dd4ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
gcc/ChangeLog
+4
-0
gcc/function.c
+3
-7
No files found.
gcc/ChangeLog
View file @
ce407aa9
2004-03-05 Paul Brook <paul@codesourcery.com>
* function.c (assign_parms): Include pretend alignment offset.
2004-03-05 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2004-03-05 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* stor-layout.c (layout_type, case FUNCTION_TYPE): Make size
* stor-layout.c (layout_type, case FUNCTION_TYPE): Make size
...
...
gcc/function.c
View file @
ce407aa9
...
@@ -4591,13 +4591,9 @@ assign_parms (tree fndecl)
...
@@ -4591,13 +4591,9 @@ assign_parms (tree fndecl)
locate_and_pad_parm
(
promoted_mode
,
passed_type
,
in_regs
,
locate_and_pad_parm
(
promoted_mode
,
passed_type
,
in_regs
,
entry_parm
?
partial
:
0
,
fndecl
,
entry_parm
?
partial
:
0
,
fndecl
,
&
stack_args_size
,
&
locate
);
&
stack_args_size
,
&
locate
);
/* Adjust offsets to include pretend args, unless this is the
/* Adjust offsets to include the pretend args. */
split arg. */
locate
.
slot_offset
.
constant
+=
extra_pretend_bytes
-
pretend_bytes
;
if
(
pretend_bytes
==
0
)
locate
.
offset
.
constant
+=
extra_pretend_bytes
-
pretend_bytes
;
{
locate
.
slot_offset
.
constant
+=
extra_pretend_bytes
;
locate
.
offset
.
constant
+=
extra_pretend_bytes
;
}
{
{
rtx
offset_rtx
;
rtx
offset_rtx
;
...
...
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