diff options
| -rw-r--r-- | sys/src/cmd/5c/peep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/5c/peep.c b/sys/src/cmd/5c/peep.c index c7f52512b..8ae41af6c 100644 --- a/sys/src/cmd/5c/peep.c +++ b/sys/src/cmd/5c/peep.c @@ -337,7 +337,7 @@ subprop(Reg *r0) break; case AMOVM: - t = 1<<v2->reg; + t = (1<<v1->reg) | (1<<v2->reg); if((p->from.type == D_CONST && (p->from.offset&t)) || (p->to.type == D_CONST && (p->to.offset&t))) return 0; |
