From 45a20ab721a513710138340faff3d59a31c3e01e Mon Sep 17 00:00:00 2001 From: forsyth Date: Mon, 3 Jun 2013 21:01:14 +0000 Subject: sync compilers with Plan 9 remove 1[acl] 2[acl] --- utils/8c/peep.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'utils/8c/peep.c') diff --git a/utils/8c/peep.c b/utils/8c/peep.c index 3d98b771..5f61925d 100644 --- a/utils/8c/peep.c +++ b/utils/8c/peep.c @@ -275,6 +275,9 @@ subprop(Reg *r0) case ACWD: case ACDQ: + case ASTOSB: + case ASTOSL: + case AMOVSB: case AMOVSL: case AFSTSW: return 0; @@ -645,11 +648,18 @@ copyu(Prog *p, Adr *v, Adr *s) return 2; goto caseread; + case AMOVSB: case AMOVSL: if(v->type == D_DI || v->type == D_SI) return 2; goto caseread; + case ASTOSB: + case ASTOSL: + if(v->type == D_AX || v->type == D_DI) + return 2; + goto caseread; + case AFSTSW: if(v->type == D_AX) return 2; -- cgit v1.2.3