diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-10-30 18:34:31 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-10-30 18:34:31 +0000 |
commit | 8790307d116eef2c23d665ca75d1e44db232117c (patch) | |
tree | b70ba2381b0f50f99ddf5adb717f2a9e329bd3c9 /lib/Analysis/GRExprEngine.cpp | |
parent | a6fac4e446eb30ed270eff9d4084d5db5e657fcf (diff) |
Add missing return statement.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 852103d58e..935fd30e53 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -1686,6 +1686,8 @@ void GRExprEngine::VisitInitListExpr(InitListExpr* E, NodeTy* Pred, } } } + + return; } if (Loc::IsLocType(T) || T->isIntegerType()) { |