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
fc80130e
Commit
fc80130e
authored
Feb 14, 2007
by
Christian Würdig
Browse files
added assert (node to spill must be scheduled)
parent
38ce69bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bespill.c
View file @
fc80130e
...
...
@@ -432,6 +432,7 @@ static void spill_node(spill_env_t *env, spill_info_t *spillinfo) {
return
;
to_spill
=
spillinfo
->
spilled_node
;
assert
(
sched_is_scheduled
(
to_spill
)
&&
"Node to be spilled must be scheduled!"
);
if
(
is_Phi
(
to_spill
)
&&
pset_find_ptr
(
env
->
mem_phis
,
spillinfo
->
spilled_node
))
{
spill_phi
(
env
,
spillinfo
);
}
else
{
...
...
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