aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Archive
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-03-11 00:24:53 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-03-11 00:24:53 +0000
commit7fcb6b65c97f6e2e96643967fca735df528dab8e (patch)
tree767d258346eb30b95144518ae6dd741c40d08ace /lib/Archive
parent6cf9b8adf43b0a460fb4ba8ddbff2787f5aa9d5e (diff)
downloadexternal_llvm-7fcb6b65c97f6e2e96643967fca735df528dab8e.zip
external_llvm-7fcb6b65c97f6e2e96643967fca735df528dab8e.tar.gz
external_llvm-7fcb6b65c97f6e2e96643967fca735df528dab8e.tar.bz2
Fix thinko: alias always defines new symbol. Even is aliasee itself is undefined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Archive')
-rw-r--r--lib/Archive/Archive.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Archive/Archive.cpp b/lib/Archive/Archive.cpp
index 7df5e48..6c95dbe 100644
--- a/lib/Archive/Archive.cpp
+++ b/lib/Archive/Archive.cpp
@@ -207,10 +207,8 @@ static void getSymbols(Module*M, std::vector<std::string>& symbols) {
// Loop over aliases
for (Module::alias_iterator AI = M->alias_begin(), AE = M->alias_end();
AI != AE; ++AI) {
- const GlobalValue *Aliased = AI->getAliasedGlobal();
- if (!Aliased->isDeclaration())
- if (AI->hasName())
- symbols.push_back(AI->getName());
+ if (AI->hasName())
+ symbols.push_back(AI->getName());
}
}