diff options
-rw-r--r-- | lld/ELF/Config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Config.h b/lld/ELF/Config.h index 2a182fba9ba..620807fe5b6 100644 --- a/lld/ELF/Config.h +++ b/lld/ELF/Config.h @@ -163,7 +163,7 @@ struct Configuration { // Returns true if we need to pass through relocations in input // files to the output file. Usually false because we consume // relocations. - bool copyRelocs() const { return Relocatable || EmitRelocs; }; + bool copyRelocs() const { return Relocatable || EmitRelocs; } // Returns true if we are creating position-independent code. bool pic() const { return Pie || Shared; } |