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
dd98f85c
Commit
dd98f85c
authored
Oct 23, 1996
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return
From-SVN: r13009
parent
bbae0daa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
gcc/stmt.c
+8
-3
No files found.
gcc/stmt.c
View file @
dd98f85c
...
...
@@ -2717,14 +2717,14 @@ expand_return (retval)
tree
expr
;
do_jump
(
TREE_OPERAND
(
retval_rhs
,
0
),
label
,
NULL_RTX
);
expr
=
build
(
MODIFY_EXPR
,
TREE_TYPE
(
current_function_decl
),
expr
=
build
(
MODIFY_EXPR
,
TREE_TYPE
(
TREE_TYPE
(
current_function_decl
)
),
DECL_RESULT
(
current_function_decl
),
TREE_OPERAND
(
retval_rhs
,
1
));
TREE_SIDE_EFFECTS
(
expr
)
=
1
;
expand_return
(
expr
);
emit_label
(
label
);
expr
=
build
(
MODIFY_EXPR
,
TREE_TYPE
(
current_function_decl
),
expr
=
build
(
MODIFY_EXPR
,
TREE_TYPE
(
TREE_TYPE
(
current_function_decl
)
),
DECL_RESULT
(
current_function_decl
),
TREE_OPERAND
(
retval_rhs
,
2
));
TREE_SIDE_EFFECTS
(
expr
)
=
1
;
...
...
@@ -2913,6 +2913,7 @@ expand_return (retval)
result_reg
=
gen_reg_rtx
(
result_reg_mode
);
/* Now that the value is in pseudos, copy it to the result reg(s). */
expand_cleanups_to
(
NULL_TREE
);
emit_queue
();
free_temp_slots
();
for
(
i
=
0
;
i
<
n_regs
;
i
++
)
...
...
@@ -2930,7 +2931,10 @@ expand_return (retval)
&&
GET_CODE
(
DECL_RTL
(
DECL_RESULT
(
current_function_decl
)))
==
REG
)
{
/* Calculate the return value into a pseudo reg. */
val
=
expand_expr
(
retval_rhs
,
NULL_RTX
,
VOIDmode
,
0
);
val
=
gen_reg_rtx
(
DECL_MODE
(
DECL_RESULT
(
current_function_decl
)));
val
=
expand_expr
(
retval_rhs
,
val
,
GET_MODE
(
val
),
0
);
val
=
force_not_mem
(
val
);
expand_cleanups_to
(
NULL_TREE
);
emit_queue
();
/* All temporaries have now been used. */
free_temp_slots
();
...
...
@@ -2942,6 +2946,7 @@ expand_return (retval)
/* No cleanups or no hard reg used;
calculate value into hard return reg. */
expand_expr
(
retval
,
const0_rtx
,
VOIDmode
,
0
);
expand_cleanups_to
(
NULL_TREE
);
emit_queue
();
free_temp_slots
();
expand_value_return
(
DECL_RTL
(
DECL_RESULT
(
current_function_decl
)));
...
...
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