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
6779f14d
Commit
6779f14d
authored
Jan 20, 2014
by
yb9976
Browse files
Adapt assertion to
9e723504
.
This fixes opt/fehler225.c
parent
4412bb1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/iropt.c
View file @
6779f14d
...
...
@@ -2018,7 +2018,7 @@ static ir_node *transform_node_bitop_shift(ir_node *n)
}
else
if
(
is_Or
(
n
)
||
is_Or_Eor_Add
(
n
))
{
new_bitop
=
new_rd_Or
(
dbg_bitop
,
block
,
shift_left
,
new_const
,
mode
);
}
else
{
assert
(
is_Eor
(
n
));
assert
(
is_Eor
(
n
)
||
is_Eor_Add
(
n
)
);
new_bitop
=
new_rd_Eor
(
dbg_bitop
,
block
,
shift_left
,
new_const
,
mode
);
}
...
...
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