PPC32 -fpic/-fPIC generates bl __tls_get_addr(x@tlsgd)@PLT or
bl __tls_get_addr(x@tlsgd)@PLT+32768.
powerpc-linux-gnu-gcc -fPIC generates bl __tls_get_addr+32668(x@tlsgd)@plt.
These expressions can be parsed by GNU assembler but not by the integrated
assembler. Add the support.
Perhaps this should be bl __tls_get_addr[+a](x@tlsgd)@plt[+b] to make it clear that we may be parsing an addend after __tls_get_addr as well as one after @plt.