aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lld/ELF/Symbols.cpp14
1 files changed, 4 insertions, 10 deletions
diff --git a/lld/ELF/Symbols.cpp b/lld/ELF/Symbols.cpp
index d19a7603..087d62b 100644
--- a/lld/ELF/Symbols.cpp
+++ b/lld/ELF/Symbols.cpp
@@ -367,14 +367,6 @@ bool elf::computeIsPreemptible(const Symbol &sym) {
return true;
}
-static uint8_t getMinVisibility(uint8_t va, uint8_t vb) {
- if (va == STV_DEFAULT)
- return vb;
- if (vb == STV_DEFAULT)
- return va;
- return std::min(va, vb);
-}
-
// Merge symbol properties.
//
// When we have many symbols of the same name, we choose one of them,
@@ -385,8 +377,10 @@ void Symbol::mergeProperties(const Symbol &other) {
exportDynamic = true;
// DSO symbols do not affect visibility in the output.
- if (!other.isShared())
- visibility = getMinVisibility(visibility, other.visibility);
+ if (!other.isShared() && other.visibility != STV_DEFAULT)
+ visibility = visibility == STV_DEFAULT
+ ? other.visibility
+ : std::min(visibility, other.visibility);
}
void Symbol::resolve(const Symbol &other) {