summaryrefslogtreecommitdiffstatshomepage
path: root/py/emit.h
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-12-12 15:34:40 +0000
committerDamien <damien.p.george@gmail.com>2013-12-12 15:34:40 +0000
commita1b2693161183fb6052271d8ea1809e48d75d144 (patch)
tree3d8642aa5e11713368238ee50f28cfd83446ff16 /py/emit.h
parente388f1034e98f5066954c2a01477c199e2c76a42 (diff)
downloadmicropython-a1b2693161183fb6052271d8ea1809e48d75d144.tar.gz
micropython-a1b2693161183fb6052271d8ea1809e48d75d144.zip
py: remove further unnecessary emit_verbatim code.
Diffstat (limited to 'py/emit.h')
-rw-r--r--py/emit.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/py/emit.h b/py/emit.h
index fdfe76437b..62a149e10c 100644
--- a/py/emit.h
+++ b/py/emit.h
@@ -38,12 +38,7 @@ typedef struct _emit_method_table_t {
void (*load_const_dec)(emit_t *emit, qstr qstr);
void (*load_const_id)(emit_t *emit, qstr qstr);
void (*load_const_str)(emit_t *emit, qstr qstr, bool bytes);
- void (*load_const_verbatim_start)(emit_t *emit);
- void (*load_const_verbatim_int)(emit_t *emit, int val);
- void (*load_const_verbatim_str)(emit_t *emit, const char *str);
- void (*load_const_verbatim_strn)(emit_t *emit, const char *str, int len);
- void (*load_const_verbatim_quoted_str)(emit_t *emit, qstr qstr, bool bytes);
- void (*load_const_verbatim_end)(emit_t *emit);
+ void (*load_const_verbatim_str)(emit_t *emit, const char *str); // only needed for emitcpy
void (*load_fast)(emit_t *emit, qstr qstr, int local_num);
void (*load_deref)(emit_t *emit, qstr qstr, int local_num);
void (*load_closure)(emit_t *emit, qstr qstr, int local_num);