add sign/zero extension operations

This commit is contained in:
Quentin Carbonneaux 2015-08-17 19:00:51 -04:00
parent 5668e93147
commit 40d0582ee0
5 changed files with 23 additions and 2 deletions

View file

@ -18,6 +18,8 @@ OpDesc opdesc[NOp] = {
[ORem] = { "rem", 2, 2 },
[OMul] = { "mul", 2, 2 },
[OAnd] = { "and", 2, 2 },
[OSext] = { "sext", 1, 1 },
[OZext] = { "zext", 1, 1 },
[OStorel] = { "storel", 2, 0 },
[OStorew] = { "storew", 2, 0 },
[OStores] = { "stores", 2, 0 },