diff options
| author | Damien <damien.p.george@gmail.com> | 2013-10-08 09:05:10 +0100 |
|---|---|---|
| committer | Damien <damien.p.george@gmail.com> | 2013-10-08 09:05:10 +0100 |
| commit | 13ed3a658d9a52c276aab94ea24c7cf78e876740 (patch) | |
| tree | 1a588a9ca71e2bc873fcdcf889ea80c4813675a1 /py/emit.h | |
| parent | 3410be803507cf8c85575def4bb894d03b64e9fd (diff) | |
Native Python and Viper support for x64 and thumb all together.
Diffstat (limited to 'py/emit.h')
| -rw-r--r-- | py/emit.h | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -119,17 +119,15 @@ void emit_common_delete_id(emit_t *emit, const emit_method_table_t *emit_method_ extern const emit_method_table_t emit_pass1_method_table; extern const emit_method_table_t emit_cpython_method_table; extern const emit_method_table_t emit_bc_method_table; -extern const emit_method_table_t emit_x64_method_table; -extern const emit_method_table_t emit_viper_x64_method_table; -extern const emit_method_table_t emit_thumb_method_table; +extern const emit_method_table_t emit_native_x64_method_table; +extern const emit_method_table_t emit_native_thumb_method_table; emit_t *emit_pass1_new(qstr qstr___class__); void emit_pass1_free(emit_t *emit); emit_t *emit_cpython_new(uint max_num_labels); emit_t *emit_bc_new(uint max_num_labels); -emit_t *emit_x64_new(uint max_num_labels); -emit_t *emit_viper_x64_new(uint max_num_labels); -emit_t *emit_thumb_new(uint max_num_labels); +emit_t *emit_native_x64_new(uint max_num_labels); +emit_t *emit_native_thumb_new(uint max_num_labels); typedef struct _emit_inline_asm_t emit_inline_asm_t; |
