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
904762c8
Commit
904762c8
authored
31 years ago
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(apply_args_egister_offset): Don't use ANSI-style definition.
From-SVN: r5214
parent
bd5d175a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcc/expr.c
+9
-2
No files found.
gcc/expr.c
View file @
904762c8
...
...
@@ -6516,8 +6516,10 @@ static int apply_args_reg_offset[FIRST_PSEUDO_REGISTER];
/* Return the offset of register REGNO into the block returned by
__builtin_apply_args. This is not declared static, since it is
needed in objc-act.c. */
int
apply_args_register_offset
(
int
regno
)
apply_args_register_offset
(
regno
)
int
regno
;
{
apply_args_size
();
...
...
@@ -6531,6 +6533,7 @@ apply_args_register_offset (int regno)
/* Return the size required for the block returned by __builtin_apply_args,
and initialize apply_args_mode. */
static
int
apply_args_size
()
{
...
...
@@ -6594,6 +6597,7 @@ apply_args_size ()
/* Return the size required for the block returned by __builtin_apply,
and initialize apply_result_mode. */
static
int
apply_result_size
()
{
...
...
@@ -6654,6 +6658,7 @@ apply_result_size ()
/* Create a vector describing the result block RESULT. If SAVEP is true,
the result block is used to save the values; otherwise it is used to
restore the values. */
static
rtx
result_vector
(
savep
,
result
)
int
savep
;
...
...
@@ -6683,9 +6688,9 @@ result_vector (savep, result)
}
#endif
/* HAVE_untyped_call or HAVE_untyped_return */
/* Save the state required to perform an untyped call with the same
arguments as were passed to the current function. */
static
rtx
expand_builtin_apply_args
()
{
...
...
@@ -6738,6 +6743,7 @@ expand_builtin_apply_args ()
/* Perform an untyped call and save the state required to perform an
untyped return of whatever value was returned by the given function. */
static
rtx
expand_builtin_apply
(
function
,
arguments
,
argsize
)
rtx
function
,
arguments
,
argsize
;
...
...
@@ -6896,6 +6902,7 @@ expand_builtin_apply (function, arguments, argsize)
}
/* Perform an untyped return. */
static
void
expand_builtin_return
(
result
)
rtx
result
;
...
...
This diff is collapsed.
Click to expand it.
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