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
469225d8
Commit
469225d8
authored
Feb 11, 1995
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_call): When setting n_named_args, depend on new
macro STRICT_ARGUMENT_NAMING. From-SVN: r8911
parent
ecacce37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
gcc/calls.c
+15
-9
No files found.
gcc/calls.c
View file @
469225d8
...
...
@@ -932,23 +932,29 @@ expand_call (exp, target, ignore)
/* Compute number of named args.
Normally, don't include the last named arg if anonymous args follow.
(If no anonymous args follow, the result of list_length
is actually one too large.)
We do include the last named arg if STRICT_ARGUMENT_NAMING is defined.
(If no anonymous args follow, the result of list_length is actually
one too large. This is harmless.)
If SETUP_INCOMING_VARARGS is defined, this machine will be able to
place unnamed args that were passed in registers into the stack. So
treat all args as named. This allows the insns emitting for a specific
argument list to be independent of the function declaration.
If SETUP_INCOMING_VARARGS is defined and STRICT_ARGUMENT_NAMING is not,
this machine will be able to place unnamed args that were passed in
registers into the stack. So treat all args as named. This allows the
insns emitting for a specific argument list to be independent of the
function declaration.
If SETUP_INCOMING_VARARGS is not defined, we do not have any reliable
way to pass unnamed args in registers, so we must force them into
memory. */
#if
ndef SETUP_INCOMING_VARARGS
#if
!defined(SETUP_INCOMING_VARARGS) || defined(STRICT_ARGUMENT_NAMING)
if
(
TYPE_ARG_TYPES
(
funtype
)
!=
0
)
n_named_args
=
list_length
(
TYPE_ARG_TYPES
(
funtype
))
-
1
=
list_length
(
TYPE_ARG_TYPES
(
funtype
))
#ifndef STRICT_ARGUMENT_NAMING
/* Don't include the last named arg. */
-
1
#endif
/* Count the struct value address, if it is passed as a parm. */
+
structure_value_addr_parm
;
+
structure_value_addr_parm
)
;
else
#endif
/* If we know nothing, treat all args as named. */
...
...
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