diff options
author | Damien <damien.p.george@gmail.com> | 2013-12-12 15:34:40 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-12-12 15:34:40 +0000 |
commit | a1b2693161183fb6052271d8ea1809e48d75d144 (patch) | |
tree | 3d8642aa5e11713368238ee50f28cfd83446ff16 /py/emit.h | |
parent | e388f1034e98f5066954c2a01477c199e2c76a42 (diff) | |
download | micropython-a1b2693161183fb6052271d8ea1809e48d75d144.tar.gz micropython-a1b2693161183fb6052271d8ea1809e48d75d144.zip |
py: remove further unnecessary emit_verbatim code.
Diffstat (limited to 'py/emit.h')
-rw-r--r-- | py/emit.h | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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); |