diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-04-02 02:52:13 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-04-02 02:52:13 +0000 |
commit | b8adaf905342129a62c989739d113a7cec7c5ff3 (patch) | |
tree | b30ddc92758826291d5c4f9328dcb9277b483654 | |
parent | 13493ea1583f39d62a66e2b2a0802f08d8ec32ca (diff) |
Update expected warning in test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68276 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/misc-ps.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/misc-ps.m b/test/Analysis/misc-ps.m index 0ee47ce67d..fede2a2d13 100644 --- a/test/Analysis/misc-ps.m +++ b/test/Analysis/misc-ps.m @@ -107,7 +107,7 @@ void check_zero_sized_VLA(int x) { void check_uninit_sized_VLA() { int x; - int vla[x]; // expected-warning{{The expression used to specify the number of elements in the VLA 'vla' evaluates to an undefined or garbage value.}} + int vla[x]; // expected-warning{{The expression used to specify the number of elements in the variable-length array (VLA) 'vla' evaluates to an undefined or garbage value}} } // sizeof(void) |