Fix PR7218. Patch by Jordy Rose.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105097 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Checker/RegionStore.cpp b/lib/Checker/RegionStore.cpp
index c4072fd..c25d209 100644
--- a/lib/Checker/RegionStore.cpp
+++ b/lib/Checker/RegionStore.cpp
@@ -213,6 +213,11 @@
 
   RegionStoreSubRegionMap *getRegionStoreSubRegionMap(Store store);
 
+  /// canHaveDirectBinding - Disallow direct bindings for certain types,
+  ///  like arrays. This lets us distinguish between x and x[0], which was
+  ///  causing PR7218 "Assigning to buf[0] makes buf[1] valid".
+  bool canHaveDirectBinding (const MemRegion *R);
+
   Optional<SVal> getBinding(RegionBindings B, const MemRegion *R);
   Optional<SVal> getDirectBinding(RegionBindings B, const MemRegion *R);
   /// getDefaultBinding - Returns an SVal* representing an optional default
@@ -944,11 +949,20 @@
 //===----------------------------------------------------------------------===//
 // Loading values from regions.
 //===----------------------------------------------------------------------===//
+bool RegionStoreManager::canHaveDirectBinding (const MemRegion *R) {
+  // Arrays can't have direct binding -- must bind to elements
+  if (const TypedRegion *TR = dyn_cast<TypedRegion>(R))    
+    if (TR->getValueType(getContext())->isArrayType())   
+      return false;
+  
+  return true;
+}
 
 Optional<SVal> RegionStoreManager::getDirectBinding(RegionBindings B,
-                                                 const MemRegion *R) {
-  if (const SVal *V = Lookup(B, R, BindingKey::Direct))
-    return *V;
+                                                    const MemRegion *R) {
+  if (canHaveDirectBinding(R))
+    if (const SVal *V = Lookup(B, R, BindingKey::Direct))
+      return *V;
 
   return Optional<SVal>();
 }
diff --git a/test/Analysis/PR7218.c b/test/Analysis/PR7218.c
new file mode 100644
index 0000000..635e56f
--- /dev/null
+++ b/test/Analysis/PR7218.c
@@ -0,0 +1,6 @@
+// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region -verify %s
+char PR7218(char a) {
+    char buf[2];
+    buf[0] = a;
+    return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
+}