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
461ef096
Commit
461ef096
authored
Jan 08, 2016
by
Christoph Mallon
Browse files
chordal: Remove dead assignment.
parent
b1c35856
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bechordal_common.c
View file @
461ef096
...
...
@@ -122,7 +122,7 @@ void create_borders(ir_node *block, void *env_ptr)
ir_node
*
pre_process_constraints
(
be_chordal_env_t
*
env
,
be_insn_t
**
the_insn
)
{
be_insn_t
*
insn
=
*
the_insn
;
be_insn_t
*
const
insn
=
*
the_insn
;
/*
* Make the Perm, recompute liveness and re-scan the insn since the
...
...
@@ -141,7 +141,7 @@ ir_node *pre_process_constraints(be_chordal_env_t *env, be_insn_t **the_insn)
* the live sets may change.
*/
obstack_free
(
&
env
->
obst
,
insn
);
*
the_insn
=
insn
=
be_scan_insn
(
env
,
irn
);
*
the_insn
=
be_scan_insn
(
env
,
irn
);
/* Copy the input constraints of the irn to the Perm as output
* constraints. Succeeding phases (coalescing) will need that. */
...
...
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