These operands are illegal and rejected by avr-gcc.
    subi    r24, -lo8(symobl+offset)
    sbci    r25, -hi8(symobl+offset)
And their correct form should be
    subi    r24, lo8(-(symobl+offset))
    sbci    r25, hi8(-(symobl+offset))Details
Details
- Reviewers
 aykevl dylanmckay - Commits
 - rGc41d425030df: [AVR][MC] Fix illegal operand forms.
 
Diff Detail
Diff Detail
- Repository
 - rG LLVM Github Monorepo