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
570bff8b
Commit
570bff8b
authored
Aug 12, 2014
by
yb9976
Browse files
Use out edges instead of outs.
This fixes backend/ia32_scheduled2.c.
parent
cfff7c32
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beflags.c
View file @
570bff8b
...
...
@@ -112,7 +112,8 @@ static void move_other_uses(ir_node *node, ir_node *copy)
* scheduled before copy. */
ir_node
*
copy_prev
=
get_irn_sched_info
(
copy
)
->
prev
;
foreach_irn_out
(
node
,
i
,
proj
)
{
foreach_out_edge
(
node
,
out
)
{
ir_node
*
proj
=
get_edge_src_irn
(
out
);
if
(
get_irn_mode
(
proj
)
==
flag_class
->
mode
)
{
continue
;
}
...
...
Write
Preview
Supports
Markdown
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