commit | 2ced1b3bdc2f3560a3d3fdbf545d69c8e0845f31 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Wed Nov 19 00:27:37 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Wed Nov 19 00:27:37 2008 +0000 |
tree | 9bedd770eb93846593491d13a15ef0668fa3c06e | |
parent | 5ed15042cb1ae4fc91e1fefe40589a486ee2314b [diff] |
Fix warning about RegionStoreManager::Retrieve() not always returning a value. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59571 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp index 6eba8bb..1831208 100644 --- a/lib/Analysis/RegionStore.cpp +++ b/lib/Analysis/RegionStore.cpp
@@ -315,7 +315,7 @@ default: assert(false && "Invalid Location"); - break; + return L; } }