https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114756

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
        lui     a5,%hi(n)
        lw      a2,%lo(n)(a5)
        lw      a3,%lo(n+4)(a5)

vs:
        lui     a5,%hi(.LANCHOR0)
        addi    a5,a5,%lo(.LANCHOR0)
        lw      a2,0(a5)
        lw      a3,4(a5)

I have seen that issue before ...

Reply via email to