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
8800cffa
Commit
8800cffa
authored
Aug 17, 2009
by
Matthias Braun
Browse files
benewalloc: more special casing of unknowns as phi-inputs needed
[r26371]
parent
c7404adf
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/benewalloc.c
View file @
8800cffa
...
...
@@ -1076,6 +1076,11 @@ static void add_phi_permutations(ir_node *block, int p)
if
(
!
arch_irn_consider_in_reg_alloc
(
cls
,
node
))
continue
;
op
=
get_Phi_pred
(
node
,
p
);
/* no need to do anything for Unknown inputs */
if
(
!
arch_irn_consider_in_reg_alloc
(
cls
,
op
))
continue
;
/* we have permutated all values into the correct registers so we can
simply query which value occupies the phis register in the
predecessor */
...
...
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