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
5852680b
Commit
5852680b
authored
Feb 14, 2004
by
Josef Zlomek
Committed by
Josef Zlomek
Feb 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-inline.c (copy_body_r): Do not replace ret_label.
From-SVN: r77820
parent
2cf20d32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/tree-inline.c
+5
-2
No files found.
gcc/ChangeLog
View file @
5852680b
2004-02-14 Josef Zlomek <zlomekj@suse.cz>
* tree-inline.c (copy_body_r): Do not replace ret_label.
2004-02-14 Jan Hubicka <jh@suse.cz>
* i386.c (x86_four_jump_limit): New variable.
...
...
gcc/tree-inline.c
View file @
5852680b
...
...
@@ -572,8 +572,11 @@ copy_body_r (tree *tp, int *walk_subtrees, void *data)
/* Local variables and labels need to be replaced by equivalent
variables. We don't want to copy static variables; there's only
one of those, no matter how many times we inline the containing
function. */
else
if
((
*
lang_hooks
.
tree_inlining
.
auto_var_in_fn_p
)
(
*
tp
,
fn
))
function.
We do not also want to copy the label which we put into
GOTO_STMT which replaced RETURN_STMT. */
else
if
(
*
tp
!=
id
->
ret_label
&&
(
*
lang_hooks
.
tree_inlining
.
auto_var_in_fn_p
)
(
*
tp
,
fn
))
{
tree
new_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