steve's recent changes fixed this bogus warning.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41432 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/array-constraint.c b/test/Sema/array-constraint.c
index ed49841..fbd4b09 100644
--- a/test/Sema/array-constraint.c
+++ b/test/Sema/array-constraint.c
@@ -2,7 +2,7 @@
 
 struct s; 
 struct s* t (struct s z[]) {   // expected-error {{array has incomplete element type}}
-  return z;                    // expected-warning {{incompatible pointer type returning}}
+  return z;
 }
 
 void *k (void l[2]) {          // expected-error {{array has incomplete element type}}