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
60e2d0ca
Commit
60e2d0ca
authored
Feb 10, 1998
by
Richard Kenner
Committed by
David Edelsohn
Feb 10, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rs6000.c (setup_incoming_varargs): Always set rs6000_sysv_varargs_p.
From-SVN: r17825
parent
b45f3a91
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.c
+5
-2
No files found.
gcc/ChangeLog
View file @
60e2d0ca
Tue Feb 10 09:02:19 1998 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* rs6000.c (setup_incoming_varargs): Always set rs6000_sysv_varargs_p.
Tue Feb 10 03:35:43 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* reload.c (find_reloads_toplev): Handle arbitrary non-paradoxical
...
...
gcc/config/rs6000/rs6000.c
View file @
60e2d0ca
/* Subroutines used for code generation on IBM RS/6000.
Copyright (C) 1991, 93
, 94, 95, 96, 1997
Free Software Foundation, Inc.
Copyright (C) 1991, 93
-7, 1998
Free Software Foundation, Inc.
Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
This file is part of GNU CC.
...
...
@@ -1486,11 +1486,14 @@ setup_incoming_varargs (cum, mode, type, pretend_size, no_rtl)
"setup_vararg: words = %2d, fregno = %2d, nargs = %4d, proto = %d, mode = %4s, no_rtl= %d
\n
"
,
cum
->
words
,
cum
->
fregno
,
cum
->
nargs_prototype
,
cum
->
prototype
,
GET_MODE_NAME
(
mode
),
no_rtl
);
if
(
(
DEFAULT_ABI
==
ABI_V4
||
DEFAULT_ABI
==
ABI_SOLARIS
)
&&
!
no_rtl
)
if
(
DEFAULT_ABI
==
ABI_V4
||
DEFAULT_ABI
==
ABI_SOLARIS
)
{
rs6000_sysv_varargs_p
=
1
;
if
(
!
no_rtl
)
save_area
=
plus_constant
(
frame_pointer_rtx
,
RS6000_VARARGS_OFFSET
);
}
else
rs6000_sysv_varargs_p
=
0
;
if
(
cum
->
words
<
8
)
{
...
...
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