diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-04-13 17:20:07 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-04-13 17:20:07 +0000 |
commit | b5b289339b51e4f180ffca55e31d62429275ee67 (patch) | |
tree | d4bb39a9534ada0a25bd594d6e9a5a74d40a2f5c /llvm/lib/IR/ModuleSummaryIndex.cpp | |
parent | ce744a95fd99e7b9ae368e2f98de60b09c70fed0 (diff) | |
download | bcm5719-llvm-b5b289339b51e4f180ffca55e31d62429275ee67.tar.gz bcm5719-llvm-b5b289339b51e4f180ffca55e31d62429275ee67.zip |
Revert "Make aliases explicit in the summary"
Inadvertently commited...
This reverts commit e618ec93786d99df2ddf280ad2d5e02f5516cecf.
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 266215
Diffstat (limited to 'llvm/lib/IR/ModuleSummaryIndex.cpp')
-rw-r--r-- | llvm/lib/IR/ModuleSummaryIndex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/ModuleSummaryIndex.cpp b/llvm/lib/IR/ModuleSummaryIndex.cpp index cc1e8a9657c..aa34532ea13 100644 --- a/llvm/lib/IR/ModuleSummaryIndex.cpp +++ b/llvm/lib/IR/ModuleSummaryIndex.cpp @@ -73,7 +73,7 @@ void ModuleSummaryIndex::removeEmptySummaryEntries() { // (GUID -> Summary). void ModuleSummaryIndex::collectDefinedFunctionsForModule( StringRef ModulePath, - std::map<GlobalValue::GUID, GlobalValueSummary *> &FunctionInfoMap) const { + std::map<GlobalValue::GUID, FunctionSummary *> &FunctionInfoMap) const { for (auto &GlobalList : *this) { auto GUID = GlobalList.first; for (auto &GlobInfo : GlobalList.second) { |