diff options
author | John McCall <rjmccall@apple.com> | 2010-11-13 01:35:44 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-11-13 01:35:44 +0000 |
commit | 404cd1669c3ba138a9ae0a619bd689cce5aae271 (patch) | |
tree | a053c793cd8d0204c8b52a673e79aa7d387ba52d /lib/Checker/GRExprEngine.cpp | |
parent | 73d15c452e675b684b7eee4f2096e386e59397aa (diff) |
Introduce a null-to-pointer implicit cast kind.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/GRExprEngine.cpp')
-rw-r--r-- | lib/Checker/GRExprEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Checker/GRExprEngine.cpp b/lib/Checker/GRExprEngine.cpp index 1669a353a5..73b5bf8967 100644 --- a/lib/Checker/GRExprEngine.cpp +++ b/lib/Checker/GRExprEngine.cpp @@ -2518,6 +2518,7 @@ void GRExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex, case CK_BitCast: case CK_LValueBitCast: case CK_IntegralCast: + case CK_NullToPointer: case CK_IntegralToPointer: case CK_PointerToIntegral: case CK_IntegralToFloating: |