From 0fa18b8923642f9ea92aa2569e6ca6a98efdfc6e Mon Sep 17 00:00:00 2001 From: George Rimar Date: Thu, 14 Apr 2016 13:47:04 +0000 Subject: [PATCH] Reduce expression to single line. NFC. llvm-svn: 266302 --- lld/ELF/Writer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 31f8d76..cb5bc4c 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -977,9 +977,7 @@ static bool includeInDynsym(const SymbolBody &B) { uint8_t V = B.getVisibility(); if (V != STV_DEFAULT && V != STV_PROTECTED) return false; - if (Config->ExportDynamic || Config->Shared) - return true; - return false; + return Config->ExportDynamic || Config->Shared; } // This class knows how to create an output section for a given -- 2.7.4