[cfe-commits] r68276 - /cfe/trunk/test/Analysis/misc-ps.m
Ted Kremenek
kremenek at apple.com
Wed Apr 1 19:52:14 PDT 2009
Author: kremenek
Date: Wed Apr 1 21:52:13 2009
New Revision: 68276
URL: http://llvm.org/viewvc/llvm-project?rev=68276&view=rev
Log:
Update expected warning in test case.
Modified:
cfe/trunk/test/Analysis/misc-ps.m
Modified: cfe/trunk/test/Analysis/misc-ps.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/misc-ps.m?rev=68276&r1=68275&r2=68276&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/misc-ps.m (original)
+++ cfe/trunk/test/Analysis/misc-ps.m Wed Apr 1 21:52:13 2009
@@ -107,7 +107,7 @@
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)
More information about the cfe-commits
mailing list