jit: Remove global decoder variable

The decoder is created in main.cpp so having a global decoder is
useless.

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar 2025-10-26 14:01:59 -04:00
parent 1c3b730899
commit ac950250a8
No known key found for this signature in database
GPG key ID: 04307C401999C596

View file

@ -23,8 +23,6 @@ struct arm32_decoder
size_t instruction_capacity;
};
extern arm32_decoder_t g_arm32_decoder;
void arm32_init(pound::host::memory::arena_t allocator,
arm32_decoder_t *p_decoder);
arm32_instruction_info_t *arm32_decode(arm32_decoder_t *p_decoder,