r220229 - Fix whitespace introduced in r220221
David Blaikie
dblaikie at gmail.com
Mon Oct 20 13:29:36 PDT 2014
Author: dblaikie
Date: Mon Oct 20 15:29:35 2014
New Revision: 220229
URL: http://llvm.org/viewvc/llvm-project?rev=220229&view=rev
Log:
Fix whitespace introduced in r220221
Post commit review feedback from Yaron Keren.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=220229&r1=220228&r2=220229&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Mon Oct 20 15:29:35 2014
@@ -1266,7 +1266,7 @@ CollectTemplateParams(const TemplatePara
// 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().EmitMemberPointer(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
More information about the cfe-commits
mailing list