Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
a63fa62c
Commit
a63fa62c
authored
Aug 11, 2011
by
Andreas Zwinkau
Browse files
Inliner must clear parameter flag of entities
parent
cfa24dd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/opt_inline.c
View file @
a63fa62c
...
...
@@ -294,6 +294,8 @@ static void copy_frame_entities(ir_graph *from, ir_graph *to)
ir_entity
*
old_ent
=
get_class_member
(
from_frame
,
i
);
ir_entity
*
new_ent
=
copy_entity_own
(
old_ent
,
to_frame
);
set_entity_link
(
old_ent
,
new_ent
);
/* since the entity is inlined now, this is not a parameter entity */
new_ent
->
is_parameter
=
0
;
}
}
...
...
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