diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-08-26 06:48:28 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-08-26 06:48:28 +0000 |
| commit | e026ebd6fea306e948540ba9afa26562f21e02e3 (patch) | |
| tree | 8f1be3e6e339d721ee9bac224ead27f2d33004f1 | |
| parent | 1a76a3c970ff358f1f252173b0ee6e578181f24f (diff) | |
| download | bcm5719-llvm-e026ebd6fea306e948540ba9afa26562f21e02e3.tar.gz bcm5719-llvm-e026ebd6fea306e948540ba9afa26562f21e02e3.zip | |
steve's recent changes fixed this bogus warning.
llvm-svn: 41432
| -rw-r--r-- | clang/test/Sema/array-constraint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/array-constraint.c b/clang/test/Sema/array-constraint.c index ed498419068..fbd4b09b40e 100644 --- a/clang/test/Sema/array-constraint.c +++ b/clang/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}} |

