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
20eeb0ee
Commit
20eeb0ee
authored
May 27, 2008
by
Matthias Braun
Browse files
make verifier a bit less strict about keeps
[r19784]
parent
ff35b372
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beverify.c
View file @
20eeb0ee
...
...
@@ -262,6 +262,9 @@ static void verify_schedule_walker(ir_node *block, void *data) {
int
arity
=
get_irn_arity
(
node
);
int
problem
=
1
;
ir_node
*
prev
=
sched_prev
(
node
);
while
(
be_is_Keep
(
prev
))
prev
=
sched_prev
(
prev
);
for
(
i
=
0
;
i
<
arity
;
++
i
)
{
ir_node
*
in
=
get_irn_n
(
node
,
i
);
in
=
skip_Proj
(
in
);
...
...
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