diff options
| author | Damien | 2013-11-03 13:58:19 +0000 |
|---|---|---|
| committer | Damien | 2013-11-03 13:58:19 +0000 |
| commit | 1a6633a74d686cdbc4609875713019b8530e3da7 (patch) | |
| tree | 4abdcbe7f25afcf4c38f87a5287f30446538878d /py/emitinlinethumb.c | |
| parent | a53f694dc3bda40431bad21ebeefe88d65bf1d6b (diff) | |
Implement more thumb branch instructions.
Diffstat (limited to 'py/emitinlinethumb.c')
| -rw-r--r-- | py/emitinlinethumb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emitinlinethumb.c b/py/emitinlinethumb.c index b545428c8..4a57235da 100644 --- a/py/emitinlinethumb.c +++ b/py/emitinlinethumb.c @@ -154,7 +154,7 @@ static void emit_inline_thumb_op(emit_inline_asm_t *emit, qstr op, int n_args, p } int label_num = get_arg_label(emit, op, pn_args, 0); // TODO check that this succeeded, ie branch was within range - asm_thumb_bgt_n(emit->as, label_num); + asm_thumb_bcc_n(emit->as, THUMB_CC_GT, label_num); // 2 args } else if (strcmp(qstr_str(op), "movs") == 0) { |
