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
e0381c84
Commit
e0381c84
authored
Jul 23, 2015
by
Christoph Mallon
Browse files
irverify: Simplify irn_verify_irg(n, get_irn_irg(n)) to irn_verify(n).
parent
1693ad23
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irverify.c
View file @
e0381c84
...
...
@@ -1079,7 +1079,7 @@ int irn_verify(const ir_node *n)
static
void
verify_wrap
(
ir_node
*
node
,
void
*
env
)
{
bool
*
fine
=
(
bool
*
)
env
;
*
fine
&=
irn_verify
_irg
(
node
,
get_irn_irg
(
node
)
);
*
fine
&=
irn_verify
(
node
);
}
/**
...
...
@@ -1090,7 +1090,7 @@ static void verify_wrap_ssa(ir_node *node, void *env)
{
bool
*
fine
=
(
bool
*
)
env
;
*
fine
&=
irn_verify
_irg
(
node
,
get_irn_irg
(
node
)
);
*
fine
&=
irn_verify
(
node
);
if
(
*
fine
)
{
*
fine
&=
check_dominance_for_node
(
node
);
}
...
...
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