We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64d9e32 commit 297db9aCopy full SHA for 297db9a
src/jit.c
@@ -570,6 +570,7 @@ static void emit_dataproc_2source(struct jit_state *state,
570
}
571
572
573
+#if RV32_HAS(EXT_M)
574
/* [ARM-A]: C4.1.67: Data-processing (3 source). */
575
static void emit_dataproc_3source(struct jit_state *state,
576
bool is64,
@@ -582,6 +583,7 @@ static void emit_dataproc_3source(struct jit_state *state,
582
583
emit_a64(state, sz(is64) | op | (rm << 16) | (ra << 10) | (rn << 5) | rd);
584
set_dirty(rd, true);
585
586
+#endif
587
588
static void update_branch_imm(struct jit_state *state,
589
uint32_t offset,
0 commit comments