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
500b9b49
Commit
500b9b49
authored
Jun 24, 2004
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor comment and whitespace changes
From-SVN: r83617
parent
940db2c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
gcc/tree-nrv.c
+4
-3
No files found.
gcc/tree-nrv.c
View file @
500b9b49
...
...
@@ -80,11 +80,12 @@ finalize_nrv_r (tree *tp, int *walk_subtrees, void *data)
/* No need to walk into types. */
if
(
TYPE_P
(
*
tp
))
*
walk_subtrees
=
0
;
/* If this is a RETURN_EXPR, then set the expression being returned
to RESULT. */
/* If this is a RETURN_EXPR, set the expression being returned
to RESULT. */
else
if
(
TREE_CODE
(
*
tp
)
==
RETURN_EXPR
)
TREE_OPERAND
(
*
tp
,
0
)
=
dp
->
result
;
/* Replace all occurrences of VAR with RESULT. */
/* Othewise replace all occurrences of VAR with RESULT. */
else
if
(
*
tp
==
dp
->
var
)
*
tp
=
dp
->
result
;
...
...
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