diff options
author | Gabor Horvath <xazax.hun@gmail.com> | 2017-09-21 08:18:59 +0000 |
---|---|---|
committer | Gabor Horvath <xazax.hun@gmail.com> | 2017-09-21 08:18:59 +0000 |
commit | 289261b569f6ee357847882efa9605522b654e60 (patch) | |
tree | 354fabdc3cc72b2b550a75d462b0883aa745f760 /lib/StaticAnalyzer | |
parent | 75e0b9b21c2dc16264e3b8055951a4a00fc29f01 (diff) | |
download | clang-289261b569f6ee357847882efa9605522b654e60.tar.gz |
[analyzer] Fix an assertion fail in VirtualCallChecker
Differential Revision: https://reviews.llvm.org/D37978
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@313866 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp b/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp index ea1976e020..c5010f5378 100644 --- a/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp @@ -146,7 +146,7 @@ static bool isVirtualCall(const CallExpr *CE) { if (CME->getQualifier()) CallIsNonVirtual = true; - if (const Expr *Base = CME->getBase()->IgnoreImpCasts()) { + if (const Expr *Base = CME->getBase()) { // The most derived class is marked final. if (Base->getBestDynamicClassType()->hasAttr<FinalAttr>()) CallIsNonVirtual = true; |