diff options
author | Derek Schuff <dschuff@google.com> | 2016-05-10 17:44:55 +0000 |
---|---|---|
committer | Derek Schuff <dschuff@google.com> | 2016-05-10 17:44:55 +0000 |
commit | 8179be4897db025dd7256bbee7c0d9e5794a2b34 (patch) | |
tree | 78dc08b1c3578d7505ee2565cc1f8939f6a93c50 /clang/lib/CodeGen/ItaniumCXXABI.cpp | |
parent | 09b2492387267439d20f59725bd8caf0a24d0a41 (diff) | |
download | bcm5719-llvm-8179be4897db025dd7256bbee7c0d9e5794a2b34.tar.gz bcm5719-llvm-8179be4897db025dd7256bbee7c0d9e5794a2b34.zip |
Introduce CGCXXABI::canCallMismatchedFunctionType
llvm-svn: 269089
Diffstat (limited to 'clang/lib/CodeGen/ItaniumCXXABI.cpp')
-rw-r--r-- | clang/lib/CodeGen/ItaniumCXXABI.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/ItaniumCXXABI.cpp b/clang/lib/CodeGen/ItaniumCXXABI.cpp index 52e519f3044..4da7b9498f6 100644 --- a/clang/lib/CodeGen/ItaniumCXXABI.cpp +++ b/clang/lib/CodeGen/ItaniumCXXABI.cpp @@ -443,6 +443,7 @@ private: (isa<CXXDestructorDecl>(GD.getDecl()) && GD.getDtorType() != Dtor_Deleting); } + bool canCallMismatchedFunctionType() const override { return false; } }; } |