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
b994c1a6
Commit
b994c1a6
authored
Sep 04, 2015
by
yb9976
Browse files
IA32: Ignore already transformed nodes.
This fixes backend/destam_flags2.c.
parent
e8c45e12
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_transform.c
View file @
b994c1a6
...
...
@@ -3057,7 +3057,7 @@ static ir_node *transform_sub_or_store(ir_node *sub)
if
(
outs
==
1
)
{
ir_node
*
succ
=
get_irn_out
(
sub
,
0
);
if
(
is_Store
(
succ
))
{
if
(
is_Store
(
succ
)
&&
!
be_is_transformed
(
succ
)
)
{
ir_node
*
new_store
=
be_transform_node
(
succ
);
if
(
is_ia32_SubMem
(
new_store
))
{
return
new_store
;
...
...
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