git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76610 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Mike Stump 2009-07-21 18:51:31 +00:00
Родитель 044ca3f1ea
Коммит 339d52a8dd
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -74,6 +74,7 @@ int f4_b() {
else return; // expected-warning {{non-void function 'f4_b' should return a value}}
*p += 10; // expected-warning{{Dereference of null pointer}}
return 0;
}
@ -162,7 +163,7 @@ int* f7c2(int *x) {
}
int f8(int *p, int *q) {
void f8(int *p, int *q) {
if (!p)
if (p)
*p = 1; // no-warning