diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-06-23 07:31:01 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-06-23 07:31:01 +0000 |
commit | e2be95b55bc18628481d1230bfa42d167ba4463b (patch) | |
tree | e4c90358e4fa13e6e458a8d5781aede22a444514 /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 6499b5f086a2390b3d3d57087e90bdeb1b43cc47 (diff) | |
download | bcm5719-llvm-e2be95b55bc18628481d1230bfa42d167ba4463b.tar.gz bcm5719-llvm-e2be95b55bc18628481d1230bfa42d167ba4463b.zip |
[CodeGen] Rename EmitMemberPointer to EmitMemberFunctionPointer
llvm-svn: 240382
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index a20e39f3fc0..8a7d3af61fd 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -1279,7 +1279,7 @@ CGDebugInfo::CollectTemplateParams(const TemplateParameterList *TPList, // Member function pointers have special support for building them, though // this is currently unsupported in LLVM CodeGen. else if ((MD = dyn_cast<CXXMethodDecl>(D)) && MD->isInstance()) - V = CGM.getCXXABI().EmitMemberPointer(MD); + V = CGM.getCXXABI().EmitMemberFunctionPointer(MD); else if (const auto *FD = dyn_cast<FunctionDecl>(D)) V = CGM.GetAddrOfFunction(FD); // Member data pointers have special handling too to compute the fixed |