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
17acc01a
Commit
17acc01a
authored
19 years ago
by
Jan Hubicka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-inline.c (copy_body_r): Remap labels correctly.
From-SVN: r101266
parent
6c8cba6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
gcc/tree-inline.c
+4
-2
No files found.
gcc/tree-inline.c
View file @
17acc01a
...
...
@@ -554,9 +554,11 @@ copy_body_r (tree *tp, int *walk_subtrees, void *data)
copy_statement_list
(
tp
);
else
if
(
TREE_CODE
(
*
tp
)
==
SAVE_EXPR
)
remap_save_expr
(
tp
,
id
->
decl_map
,
walk_subtrees
);
else
if
(
TREE_CODE
(
*
tp
)
==
LABEL_DECL
)
else
if
(
TREE_CODE
(
*
tp
)
==
LABEL_DECL
&&
(
!
DECL_CONTEXT
(
*
tp
)
||
decl_function_context
(
*
tp
)
==
id
->
callee
))
/* These may need to be remapped for EH handling. */
remap_decl
(
*
tp
,
id
);
*
tp
=
remap_decl
(
*
tp
,
id
);
else
if
(
TREE_CODE
(
*
tp
)
==
BIND_EXPR
)
copy_bind_expr
(
tp
,
walk_subtrees
,
id
);
/* Types may need remapping as well. */
...
...
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