diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-11 00:24:53 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-11 00:24:53 +0000 |
commit | 7fcb6b65c97f6e2e96643967fca735df528dab8e (patch) | |
tree | 767d258346eb30b95144518ae6dd741c40d08ace /lib/Archive/Archive.cpp | |
parent | 6cf9b8adf43b0a460fb4ba8ddbff2787f5aa9d5e (diff) |
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/Archive.cpp')
-rw-r--r-- | lib/Archive/Archive.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Archive/Archive.cpp b/lib/Archive/Archive.cpp index 7df5e48f9f..6c95dbe372 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()); } } |