From: Mike Stump Date: Wed, 22 Jul 2009 22:55:09 +0000 (+0000) Subject: Prep for new warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0549e2b5c73d65ce96fc37c9030577997fe19d4;p=clang Prep for new warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76813 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/null-deref-ps.c b/test/Analysis/null-deref-ps.c index f2994f55da..52ed8cd5c4 100644 --- a/test/Analysis/null-deref-ps.c +++ b/test/Analysis/null-deref-ps.c @@ -105,7 +105,7 @@ int f6c(int *p, int *q) { : bar3(p, 2, q); // no-warning } -int f6d(int *p) { +void f6d(int *p) { bar(p, 0); // At this point, 'p' cannot be null. if (!p) {