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
0ee902cb
Commit
0ee902cb
authored
Feb 13, 1995
by
Roland McGrath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_call): Add missing paren in wilson's change on 11 Feb 95.
From-SVN: r8914
parent
3f3d2ec8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
gcc/calls.c
+6
-6
No files found.
gcc/calls.c
View file @
0ee902cb
...
...
@@ -948,13 +948,13 @@ expand_call (exp, target, ignore)
#if !defined(SETUP_INCOMING_VARARGS) || defined(STRICT_ARGUMENT_NAMING)
if
(
TYPE_ARG_TYPES
(
funtype
)
!=
0
)
n_named_args
=
list_length
(
TYPE_ARG_TYPES
(
funtype
))
=
(
list_length
(
TYPE_ARG_TYPES
(
funtype
))
#ifndef STRICT_ARGUMENT_NAMING
/* Don't include the last named arg. */
-
1
/* 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
);
/* Count the struct value address, if it is passed as a parm. */
+
structure_value_addr_parm
);
else
#endif
/* If we know nothing, treat all args as named. */
...
...
@@ -968,7 +968,7 @@ expand_call (exp, target, ignore)
args_size
.
var
=
0
;
/* In this loop, we consider args in the order they are written.
We fill up ARGS from the front o
f
from the back if necessary
We fill up ARGS from the front o
r
from the back if necessary
so that in any case the first arg to be pushed ends up at the front. */
#ifdef PUSH_ARGS_REVERSED
...
...
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