From e2b00834749b685f8023c3984632d775c1550da3 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 16 Sep 2008 23:25:28 +0000 Subject: [PATCH] Fix copy-paste error in test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56261 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/null-deref-ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Analysis/null-deref-ps.c b/test/Analysis/null-deref-ps.c index a6819cc48b..fb6b2089f0 100644 --- a/test/Analysis/null-deref-ps.c +++ b/test/Analysis/null-deref-ps.c @@ -96,7 +96,7 @@ int f9(int len) { int *p = 0; for (int i = 0; i < len; ++i) - p = foo(i); + p = qux(i); return *p++; // no-warning } -- 2.40.0