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
c39892b9
Commit
c39892b9
authored
Sep 22, 2014
by
yb9976
Browse files
Improved local optimization.
parent
eb63de59
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/iropt.c
View file @
c39892b9
...
...
@@ -990,12 +990,12 @@ static ir_node *equivalent_node_Eor(ir_node *n)
ir_node
*
x
;
ir_node
*
z
;
if
(
is_Eor
(
a
)
||
is_Or_Eor_Add
(
a
))
{
if
(
is_Eor
(
a
)
||
is_Or_Eor_Add
(
a
)
||
is_Eor_Add
(
a
)
)
{
x
=
b
;
z
=
a
;
goto
inverse
;
}
if
(
is_Eor
(
b
)
||
is_Or_Eor_Add
(
b
))
{
if
(
is_Eor
(
b
)
||
is_Or_Eor_Add
(
b
)
||
is_Eor_Add
(
b
)
)
{
x
=
a
;
z
=
b
;
inverse:
;
...
...
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