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
9c4dff80
Commit
9c4dff80
authored
Jun 24, 2011
by
Andreas Zwinkau
Browse files
Fix: Spills have ProjMs now
parent
6b45fde8
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_emitter.c
View file @
9c4dff80
...
...
@@ -913,11 +913,11 @@ static ir_node *find_original_value(ir_node *node)
return
find_original_value
(
get_irn_n
(
pred
,
get_Proj_proj
(
node
)
+
1
));
}
else
if
(
is_ia32_Load
(
pred
))
{
return
find_original_value
(
get_irn_n
(
pred
,
n_ia32_Load_mem
));
}
else
if
(
is_ia32_Store
(
pred
))
{
return
find_original_value
(
get_irn_n
(
pred
,
n_ia32_Store_val
));
}
else
{
return
node
;
}
}
else
if
(
is_ia32_Store
(
node
))
{
return
find_original_value
(
get_irn_n
(
node
,
n_ia32_Store_val
));
}
else
if
(
is_Phi
(
node
))
{
int
i
,
arity
;
arity
=
get_irn_arity
(
node
);
...
...
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