In order to determine whether R_MIPS_JALR should use R_PC or R_NONE, the
MIPS code checks whether the target is preemptible and not microMIPS.
To check the later condition we look at the low bit of the virtual address.
However, for TLS symbols calling Symbol::getVA() will report a fatal error
until Out::tlsPhdr has been initialized (which only happens later).
It is unclear whether clang should be emitting these relocations for TLS
symbols in the first place, but we should be able to handle this without
failing in LLD even if clang is later change to not emit the relocation.