Closed LucasSte closed 5 months ago
Problem
When we dump assembly from LLVM (either llvm-objdump or llc), we use a space between the register and the offset in memory operations (e.g. [r10 - 8]), but the assembly parser does not support it.
llvm-objdump
llc
[r10 - 8]
Solution
Fix the parser to accept the spaces.
Problem
When we dump assembly from LLVM (either
llvm-objdump
orllc
), we use a space between the register and the offset in memory operations (e.g.[r10 - 8]
), but the assembly parser does not support it.Solution
Fix the parser to accept the spaces.