mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 14:50:19 +02:00
Correct wrong movr simplification
This commit is contained in:
parent
be32b6ad15
commit
b00c750830
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2016-05-05 Paulo Andrade <pcpa@gnu.org>
|
||||||
|
|
||||||
|
* lib/lightning.c: Correct wrong movr simplification.
|
||||||
|
|
||||||
2015-11-30 Paulo Andrade <pcpa@gnu.org>
|
2015-11-30 Paulo Andrade <pcpa@gnu.org>
|
||||||
|
|
||||||
* doc/body.texi: Change documentation to no longer say
|
* doc/body.texi: Change documentation to no longer say
|
||||||
|
|
|
@ -2822,7 +2822,7 @@ _simplify_movr(jit_state_t *_jit, jit_node_t *prev, jit_node_t *node,
|
||||||
else {
|
else {
|
||||||
value->kind = jit_kind_register;
|
value->kind = jit_kind_register;
|
||||||
value->base.q.l = right;
|
value->base.q.l = right;
|
||||||
value->base.q.h = _jitc->gen[regno];
|
value->base.q.h = _jitc->gen[right];
|
||||||
}
|
}
|
||||||
++_jitc->gen[regno];
|
++_jitc->gen[regno];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue