aboutsummaryrefslogtreecommitdiff
path: root/src/common.mli
diff options
context:
space:
mode:
authorpacien2018-05-01 01:58:33 +0200
committerpacien2018-05-01 01:58:33 +0200
commitcc0aba43998e20456abf05fbb706d7cf85b74538 (patch)
tree97466b20f0cfa580bc73796036564099cb9caf8a /src/common.mli
parent908aa7769ed5d2efe879395d577df00ab0b491fb (diff)
downloadurm-cc0aba43998e20456abf05fbb706d7cf85b74538.tar.gz
Replace label lineno hashtable with assoc list
Diffstat (limited to 'src/common.mli')
-rw-r--r--src/common.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.mli b/src/common.mli
index 250a804..2199254 100644
--- a/src/common.mli
+++ b/src/common.mli
@@ -44,7 +44,7 @@ type urm = {
44type state = { 44type state = {
45 max_reg : int; 45 max_reg : int;
46 label_count : int; 46 label_count : int;
47 label_table : (string, int) Hashtbl.t 47 label_table : (label * int) list
48} 48}
49 49
50exception Syntax_error 50exception Syntax_error