Prep for new warning.

llvm-svn: 76616
This commit is contained in:
Mike Stump 2009-07-21 18:56:34 +00:00
parent ef1f36d3c7
commit 5fbc72bfd5
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ int f4(int x) {
return y; // expected-warning {{use of uninitialized variable}}
}
int f5() {
void f5() {
int a;
a = 30; // no-warning
}