aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/array-constraint.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-12-07 00:59:53 +0000
committerChris Lattner <sabre@nondot.org>2008-12-07 00:59:53 +0000
commitb3582b939e2bb99d25de4908576b49d43490f8cf (patch)
tree5bb40315707d5f8308b26a4321d3dcf151869a2f /clang/test/Sema/array-constraint.c
parenta1a9c28d30d6e471a24e8fbf272bde736574f7b4 (diff)
downloadllvm-b3582b939e2bb99d25de4908576b49d43490f8cf.zip
llvm-b3582b939e2bb99d25de4908576b49d43490f8cf.tar.gz
llvm-b3582b939e2bb99d25de4908576b49d43490f8cf.tar.bz2
a minor grammar fix
llvm-svn: 60646
Diffstat (limited to 'clang/test/Sema/array-constraint.c')
-rw-r--r--clang/test/Sema/array-constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/array-constraint.c b/clang/test/Sema/array-constraint.c
index 7763e79..596d19f 100644
--- a/clang/test/Sema/array-constraint.c
+++ b/clang/test/Sema/array-constraint.c
@@ -41,7 +41,7 @@ void check_size() {
}
static int I;
-typedef int TA[I]; // expected-error {{variable length array declaration not allowed in file scope}}
+typedef int TA[I]; // expected-error {{variable length array declaration not allowed at file scope}}
void strFunc(char *);
const char staticAry[] = "test";