aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-07-31 16:07:31 +0000
committerDouglas Gregor <dgregor@apple.com>2009-07-31 16:07:31 +0000
commit6f2c46b58894d5a81ad7ed7654e3768c72aa0d74 (patch)
treeecce4a0ee3ea95640b11540552809991d95251dd /lib
parenta2ffb983a4db32e11860a65309e8e2b72f556763 (diff)
Make canonicalization of overloaded function declarations match the
Itanium C++ ABI's name mangling, since both are related to the notion of "equivalent" function templates. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77678 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/AST/StmtProfile.cpp22
1 files changed, 3 insertions, 19 deletions
diff --git a/lib/AST/StmtProfile.cpp b/lib/AST/StmtProfile.cpp
index 5a04df0406..d0f02ae95b 100644
--- a/lib/AST/StmtProfile.cpp
+++ b/lib/AST/StmtProfile.cpp
@@ -629,25 +629,9 @@ void StmtProfiler::VisitDecl(Decl *D) {
}
if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) {
- // Canonicalize all of the function declarations within the overload
- // set.
- llvm::SmallVector<Decl *, 4> Functions;
- for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
- FEnd = Ovl->function_end();
- F != FEnd; ++F)
- Functions.push_back(F->get()->getCanonicalDecl());
-
- // Sorting the functions based on the point means that the ID generated
- // will be different from one execution of the compiler to another.
- // Since these IDs don't persist over time, the change in ordering will
- // not affect compilation.
- std::sort(Functions.begin(), Functions.end());
-
- for (llvm::SmallVector<Decl *, 4>::iterator F = Functions.begin(),
- FEnd = Functions.end();
- F != FEnd; ++F)
- VisitDecl(*F);
-
+ // The Itanium C++ ABI mangles references to a set of overloaded
+ // functions using just the function name, so we do the same here.
+ VisitName(Ovl->getDeclName());
return;
}
}