aboutsummaryrefslogtreecommitdiff
path: root/py/compile.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-09 12:27:39 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-09 12:27:39 +0100
commit78035b995ff7bd518cc1291aa70c966b53510fd9 (patch)
treeb401d96d1a29db9cc7c87beedc9c829cc46e56f8 /py/compile.h
parentfc18c8e834a1ed72b9f61d82cd00099a4de1eab4 (diff)
py, compiler: Clean up and compress scope/compile structures.
Convert int types to uint where sensible, and then to uint8_t or uint16_t where possible to reduce RAM usage.
Diffstat (limited to 'py/compile.h')
-rw-r--r--py/compile.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/compile.h b/py/compile.h
index d4a17b7a8..10fd603f2 100644
--- a/py/compile.h
+++ b/py/compile.h
@@ -1,3 +1,4 @@
+// These must fit in 8 bits; see scope.h
enum {
MP_EMIT_OPT_NONE,
MP_EMIT_OPT_BYTE_CODE,