Revert "Merge pull request #6172 from Cacodemon345/armfixes-2"

This reverts commit 5bfa69f3da, reversing
changes made to a54e33bf04.
This commit is contained in:
Cacodemon345
2025-09-17 22:50:18 +06:00
parent 1b861d89e6
commit 5577efe301
9 changed files with 45 additions and 64 deletions

View File

@@ -114,10 +114,6 @@ int codegen_can_unroll_full(codeblock_t *block, ir_data_t *ir, uint32_t next_pc,
static inline int
codegen_can_unroll(codeblock_t *block, ir_data_t *ir, uint32_t next_pc, uint32_t dest_addr)
{
/* TODO: Re-enable this again after fixing mysterious crashes on ARM64 with MMX instructions used. */
#if defined __ARM_EABI__ || defined _ARM_ || defined _M_ARM || defined __aarch64__ || defined _M_ARM64
return 0;
#endif
if (block->flags & CODEBLOCK_BYTE_MASK)
return 0;