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
a346e6eb
Commit
a346e6eb
authored
Mar 02, 2005
by
Michael Beck
Browse files
bugfix: is_fragile_op expected an IR-node
[r5278]
parent
f0d44932
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/loop_unrolling.c
View file @
a346e6eb
...
...
@@ -532,10 +532,9 @@ copy_loop_body(set *l_n, induct_var_info *info, int unroll_factor)
static
int
is_exception_possible
(
ir_node
*
node
)
{
ir_node
*
pred
=
get_Proj_pred
(
node
);
ir_op
*
op
=
get_irn_op
(
pred
);
/* only fragile ops can throw an exception */
if
(
!
is_fragile_op
(
o
p
))
if
(
!
is_fragile_op
(
p
red
))
return
0
;
/*
...
...
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