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
de3af7c1
Commit
de3af7c1
authored
Apr 08, 2014
by
Manuel Mohr
Browse files
Fix warning in optimize build.
parent
556ae9e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bespillslots.c
View file @
de3af7c1
...
...
@@ -210,7 +210,6 @@ static spill_t *collect_spill(be_fec_env_t *env, ir_node *node, spillweb_t *web)
/* ignore obvious self-loops */
if
(
arg
==
node
)
continue
;
spillweb_t
*
old_web
=
web
;
spill_t
*
arg_spill
=
collect_spill
(
env
,
arg
,
web
);
ir_node
*
block
=
get_nodes_block
(
arg
);
...
...
@@ -220,6 +219,9 @@ static spill_t *collect_spill(be_fec_env_t *env, ir_node *node, spillweb_t *web)
affinty_edge
->
slot1
=
spill
->
spillslot
;
affinty_edge
->
slot2
=
arg_spill
->
spillslot
;
ARR_APP1
(
affinity_edge_t
*
,
env
->
affinity_edges
,
affinty_edge
);
#ifndef NDEBUG
spillweb_t
*
old_web
=
web
;
#endif
web
=
arg_spill
->
web
;
assert
(
web
->
merged_with
==
NULL
);
assert
(
web
==
old_web
||
old_web
==
NULL
...
...
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