diff options
| author | Alasdair Armstrong | 2018-03-01 19:24:07 +0000 |
|---|---|---|
| committer | Alasdair Armstrong | 2018-03-01 19:24:50 +0000 |
| commit | b7f806b7c5df7b2809d9a9d014b0a4611e9bdcf7 (patch) | |
| tree | 94c15223ac8e59329c7eb7e133aa9b49cf5399c6 /editors | |
| parent | 868ba4b5cc41ee902032154864df560edc22e0d0 (diff) | |
Cleanup intermediate bytecode representation in C backend
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/sail2-mode.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/sail2-mode.el b/editors/sail2-mode.el index eb3e0fe6..47ce1690 100644 --- a/editors/sail2-mode.el +++ b/editors/sail2-mode.el @@ -16,10 +16,11 @@ "exmem" "undef" "unspec" "nondet" "escape")) (defconst sail2-types - '("vector" "int" "nat" "atom" "range" "unit" "bit" "real" "list" "bool" "string" "bits")) + '("vector" "int" "nat" "atom" "range" "unit" "bit" "real" "list" "bool" "string" "bits" + "uint64_t" "int64_t" "bv_t" "mpz_t")) (defconst sail2-special - '("_prove" "$define" "$include" "$ifdef" "$ifndef" "$else" "$endif")) + '("_prove" "create" "kill" "convert" "$define" "$include" "$ifdef" "$ifndef" "$else" "$endif")) (defconst sail2-font-lock-keywords `((,(regexp-opt sail2-keywords 'symbols) . font-lock-keyword-face) |
