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
b91accd6
Commit
b91accd6
authored
Jul 28, 2004
by
Alan Modra
Committed by
Alan Modra
Jul 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/rs6000/rs6000.c (function_arg_padding): Pad SFmode upwards.
From-SVN: r85242
parent
66aeab7d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.c
+3
-3
No files found.
gcc/ChangeLog
View file @
b91accd6
2004-07-28 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.c (function_arg_padding): Pad SFmode upwards.
2004-07-27 Richard Henderson <rth@redhat.com>
2004-07-27 Richard Henderson <rth@redhat.com>
* function.c (assign_stack_local_1): Widen alignment to HOST_WIDE_INT
* function.c (assign_stack_local_1): Widen alignment to HOST_WIDE_INT
...
...
gcc/config/rs6000/rs6000.c
View file @
b91accd6
...
@@ -4594,9 +4594,9 @@ function_arg_padding (enum machine_mode mode, tree type)
...
@@ -4594,9 +4594,9 @@ function_arg_padding (enum machine_mode mode, tree type)
return
upward
;
return
upward
;
}
}
/* SFmode parameters are
not padded
. */
/* SFmode parameters are
padded upwards
. */
if
(
TARGET_64BIT
&&
mode
==
SFmode
)
if
(
mode
==
SFmode
)
return
none
;
return
upward
;
/* Fall back to the default. */
/* Fall back to the default. */
return
DEFAULT_FUNCTION_ARG_PADDING
(
mode
,
type
);
return
DEFAULT_FUNCTION_ARG_PADDING
(
mode
,
type
);
...
...
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