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
c2f1b14f
Commit
c2f1b14f
authored
Sep 16, 2011
by
Matthias Braun
Browse files
remove broken-for-verifier flag
parent
e9bb88e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/libfirm/irgraph.h
View file @
c2f1b14f
...
...
@@ -538,7 +538,6 @@ typedef enum {
IR_GRAPH_STATE_CONSISTENT_ENTITY_USAGE
=
1U
<<
14
,
/** extended basic blocks have been formed and are up to date */
IR_GRAPH_STATE_VALID_EXTENDED_BLOCKS
=
1U
<<
15
,
IR_GRAPH_STATE_BROKEN_FOR_VERIFIER
=
1U
<<
15
,
/**< verifier would unecessarily complain about the graph */
}
ir_graph_state_t
;
ENUM_BITSET
(
ir_graph_state_t
)
...
...
ir/opt/opt_manage.c
View file @
c2f1b14f
...
...
@@ -72,8 +72,5 @@ void perform_irg_optimization(ir_graph *irg, optdesc_t *opt)
remove_End_Bads_and_doublets
(
get_irg_end
(
irg
));
if
(
!
(
new_irg_state
&
IR_GRAPH_STATE_BROKEN_FOR_VERIFIER
))
{
irg_verify
(
irg
,
VERIFY_ENFORCE_SSA
);
}
irg_verify
(
irg
,
VERIFY_ENFORCE_SSA
);
}
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