split store into store{w,l}
This commit is contained in:
parent
f6df9e55c5
commit
1583f4bd32
5 changed files with 64 additions and 76 deletions
14
lisc/isel.c
14
lisc/isel.c
|
@ -115,7 +115,8 @@ sel(Ins i, Fn *fn)
|
|||
case OAdd:
|
||||
case OSub:
|
||||
case OCopy:
|
||||
case OStore:
|
||||
case OStorel:
|
||||
case OStorew:
|
||||
case OStoreb:
|
||||
case OStores:
|
||||
case OLoad:
|
||||
|
@ -153,8 +154,15 @@ flagi(Ins *i0, Ins *i)
|
|||
case OSub:
|
||||
return i;
|
||||
case OCopy: /* <arch> flag-transparent */
|
||||
case OStore:
|
||||
case OLoad:;
|
||||
case OStorel:
|
||||
case OStorew:
|
||||
case OStoreb:
|
||||
case OStores:
|
||||
case OLoad:
|
||||
case OLoadss:
|
||||
case OLoadus:
|
||||
case OLoadsb:
|
||||
case OLoadub:;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue