Skip to content

Commit 3f9c45e

Browse files
committed
py/asmarm: Fix assembler's PASS_EMIT constant name.
1 parent 714a59a commit 3f9c45e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/asmarm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#define SIGNED_FIT24(x) (((x) & 0xff800000) == 0) || (((x) & 0xff000000) == 0xff000000)
4040

4141
void asm_arm_end_pass(asm_arm_t *as) {
42-
if (as->base.pass == ASM_ARM_PASS_EMIT) {
42+
if (as->base.pass == MP_ASM_PASS_EMIT) {
4343
#ifdef __arm__
4444
// flush I- and D-cache
4545
asm volatile(

0 commit comments

Comments
 (0)