Some alias instructions have a leading space or tab in the asm text (no idea why LLVM does that). Because of that the mnemonic and op_str were never properly separated, because stops looking for the mnemonic at the first tab/space occurrence.
So we simply check for leading blank chars in the asm text and remove them.
Some alias instructions have a leading space or tab in the asm text (no idea why LLVM does that). Because of that the mnemonic and op_str were never properly separated, because stops looking for the mnemonic at the first tab/space occurrence.
So we simply check for leading blank chars in the asm text and remove them.
closes https://github.com/capstone-engine/capstone/issues/2189