r328599 - Remove dead method
Reid Kleckner via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 26 17:26:13 PDT 2018
Author: rnk
Date: Mon Mar 26 17:26:13 2018
New Revision: 328599
URL: http://llvm.org/viewvc/llvm-project?rev=328599&view=rev
Log:
Remove dead method
Modified:
cfe/trunk/include/clang/Basic/TargetCXXABI.h
Modified: cfe/trunk/include/clang/Basic/TargetCXXABI.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/TargetCXXABI.h?rev=328599&r1=328598&r2=328599&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/TargetCXXABI.h (original)
+++ cfe/trunk/include/clang/Basic/TargetCXXABI.h Mon Mar 26 17:26:13 2018
@@ -199,13 +199,6 @@ public:
llvm_unreachable("bad ABI kind");
}
- /// \brief Is the default C++ member function calling convention
- /// the same as the default calling convention?
- bool isMemberFunctionCCDefault() const {
- // Right now, this is always false for Microsoft.
- return !isMicrosoft();
- }
-
/// Are arguments to a call destroyed left to right in the callee?
/// This is a fundamental language change, since it implies that objects
/// passed by value do *not* live to the end of the full expression.
More information about the cfe-commits
mailing list