summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Mangler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/VMCore/Mangler.cpp')
-rw-r--r--llvm/lib/VMCore/Mangler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/Mangler.cpp b/llvm/lib/VMCore/Mangler.cpp
index b3211a31530..353732f9c1d 100644
--- a/llvm/lib/VMCore/Mangler.cpp
+++ b/llvm/lib/VMCore/Mangler.cpp
@@ -170,8 +170,8 @@ void Mangler::InsertName(GlobalValue *GV,
GV->hasDLLImportLinkage()) &&
(ExistingValue->hasExternalLinkage() ||
ExistingValue->hasDLLImportLinkage()) &&
- GV->isExternal() &&
- ExistingValue->isExternal()) {
+ GV->isDeclaration() &&
+ ExistingValue->isDeclaration()) {
// If the two globals both have external inkage, and are both external,
// don't mangle either of them, we just have some silly type mismatch.
} else {
OpenPOWER on IntegriCloud