Allow assembler expressions to start with an identifier. This allows for expressions such as
b symbol + 4
and
mov symEnd - symStart, %g1
The patch builds upon https://reviews.llvm.org/D47136.
Differential D47458
[Sparc] Support relocatable expressions in the assembler dcederman on May 29 2018, 1:17 AM. Authored by
Details Allow assembler expressions to start with an identifier. This allows for expressions such as b symbol + 4 and mov symEnd - symStart, %g1 The patch builds upon https://reviews.llvm.org/D47136.
Diff Detail
Event TimelineComment Actions The test case needs to be resorted, so that the DOTEXPR test comes last, but otherwise this change works for me. |