diff options
-rw-r--r-- | clang/test/Analysis/misc-ps.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/misc-ps.m b/clang/test/Analysis/misc-ps.m index 0ee47ce67db..fede2a2d136 100644 --- a/clang/test/Analysis/misc-ps.m +++ b/clang/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) |