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
1e9b994c
Commit
1e9b994c
authored
Jan 20, 2009
by
Michael Beck
Browse files
- check for entities on the frame only (no more value_param_proj)
[r25281]
parent
1f1f7999
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/opt_frame.c
View file @
1e9b994c
...
...
@@ -78,7 +78,9 @@ void opt_frame_irg(ir_graph *irg) {
sel
=
get_irn_out
(
frame
,
i
);
if
(
is_Sel
(
sel
))
{
ent
=
get_Sel_entity
(
sel
);
set_entity_link
(
ent
,
ent
);
/* only entities on the frame */
if
(
get_entity_owner
(
ent
)
==
frame_tp
)
set_entity_link
(
ent
,
ent
);
}
}
}
...
...
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