From: Ted Kremenek Date: Thu, 4 Dec 2008 02:07:20 +0000 (+0000) Subject: Revise bogus comment I just committed. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=42268463fb151b80fecd2e85ce375df0acfbbcb2;p=clang Revise bogus comment I just committed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60522 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/uninit-vals-ps-region.c b/test/Analysis/uninit-vals-ps-region.c index 3109393775..5d342b5a74 100644 --- a/test/Analysis/uninit-vals-ps-region.c +++ b/test/Analysis/uninit-vals-ps-region.c @@ -12,6 +12,6 @@ void f4() { int a; if (global.data == 0) a = 3; - if (global.data == 0) // The true branch is infeasible. + if (global.data == 0) // When the true branch is feasible 'a = 3'. g(a); // no-warning }