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
36cc9008
Commit
36cc9008
authored
Jul 19, 2007
by
Matthias Braun
Browse files
don't display outedge warnings for blocks
[r15269]
parent
9dfd26d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beverify.c
View file @
36cc9008
...
...
@@ -866,6 +866,10 @@ static void check_out_edges(ir_node *node, verify_out_dead_nodes_env *env) {
return
;
mark_irn_visited
(
node
);
/* we find too many (uncritical) dead nodes in block out edges */
if
(
is_Block
(
node
))
return
;
foreach_out_edge
(
node
,
edge
)
{
ir_node
*
src
=
get_edge_src_irn
(
edge
);
...
...
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