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
fda30a9a
Commit
fda30a9a
authored
Jan 22, 2009
by
Michael Beck
Browse files
- Bugfix irg_out_block_walk() was doing wrong things when input was not a node
[r25335]
parent
015232d1
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/ana/irouts.c
View file @
fda30a9a
...
...
@@ -262,8 +262,7 @@ void irg_out_block_walk(ir_node *node,
for
(
i
=
0
,
n
=
get_irn_n_outs
(
node
);
i
<
n
;
++
i
)
{
ir_node
*
succ
=
get_irn_out
(
node
,
i
);
if
(
get_irn_visited
(
succ
)
<
get_irg_visited
(
current_ir_graph
))
irg_out_walk_2
(
succ
,
pre
,
post
,
env
);
irg_out_block_walk2
(
succ
,
pre
,
post
,
env
);
}
}
else
{
...
...
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