split store into store{w,l}

This commit is contained in:
Quentin Carbonneaux 2015-08-11 16:26:12 -04:00
parent f6df9e55c5
commit 1583f4bd32
5 changed files with 64 additions and 76 deletions

View file

@ -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;
}