diff options
| author | azidar | 2015-07-31 17:20:43 -0700 |
|---|---|---|
| committer | azidar | 2015-07-31 17:20:43 -0700 |
| commit | 60a254b0749a5dbe133d79e21f42c3878f4e7adf (patch) | |
| tree | bdc1f9f9a632c1ab52595823ef7bf93e3ab33f15 /src | |
| parent | 612d59c10fa2a320305144e7aeaae7040aba4ed7 (diff) | |
Fixed compiletime error, whooops
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/stanza/primop.stanza | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/stanza/primop.stanza b/src/main/stanza/primop.stanza index 0d304d32..5f938314 100644 --- a/src/main/stanza/primop.stanza +++ b/src/main/stanza/primop.stanza @@ -51,12 +51,12 @@ public defn lower-and-type-primop (e:DoPrim) -> DoPrim : SHIFT-RIGHT-OP : DoPrim(SHIFT-RIGHT-OP,args(e),consts(e),of-type(args(e)[0])) CONVERT-OP : DoPrim(CONVERT-OP,args(e),consts(e),s()) NEG-OP : DoPrim(NEG-OP,args(e),consts(e),s()) - BIT-NOT-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0]))) - BIT-AND-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0]))) - BIT-OR-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0]))) - BIT-XOR-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0]))) - BIT-SELECT-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0]))) - BITS-SELECT-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0]))) + BIT-NOT-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0])) + BIT-AND-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0])) + BIT-OR-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0])) + BIT-XOR-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0])) + BIT-SELECT-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0])) + BITS-SELECT-OP : DoPrim(op(e),args(e),consts(e),of-type(args(e)[0])) CONCAT-OP : DoPrim(op(e),args(e),consts(e),u()) BIT-AND-REDUCE-OP : DoPrim(op(e),args(e),consts(e),u()) BIT-OR-REDUCE-OP : DoPrim(op(e),args(e),consts(e),u()) |
