Update expected warning in test case.

llvm-svn: 68276
This commit is contained in:
Ted Kremenek 2009-04-02 02:52:13 +00:00
parent 6c3413c74a
commit 9335fecc2a
1 changed files with 1 additions and 1 deletions

View File

@ -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)