diff options
-rw-r--r-- | lld/ELF/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 35a8f2601ff..11fb9b020d4 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -233,7 +233,7 @@ void Writer<ELFT>::scanRelocs( continue; } - if ((Body && Body->isTLS()) && !Target->isTlsDynReloc(Type)) + if (Body && Body->isTLS() && !Target->isTlsDynReloc(Type)) continue; bool NeedsGot = false; |