powerpc32: Fix syntax error in __GLRO macro

This commit is contained in:
Andreas Schwab 2020-01-18 00:17:05 +01:00
parent 768c83b7f6
commit be5c5315b9

View File

@ -179,7 +179,7 @@ GOT_LABEL: ; \
#else #else
/* Position-dependent code does not require access to the GOT. */ /* Position-dependent code does not require access to the GOT. */
# define __GLRO(rOUT, rGOT, member, offset) \ # define __GLRO(rOUT, rGOT, member, offset) \
lis rOUT,(member+LOWORD)@ha \ lis rOUT,(member+LOWORD)@ha; \
lwz rOUT,(member+LOWORD)@l(rOUT) lwz rOUT,(member+LOWORD)@l(rOUT)
#endif /* PIC */ #endif /* PIC */