]> granicus.if.org Git - clang/commitdiff
Revise bogus comment I just committed.
authorTed Kremenek <kremenek@apple.com>
Thu, 4 Dec 2008 02:07:20 +0000 (02:07 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 4 Dec 2008 02:07:20 +0000 (02:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60522 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/uninit-vals-ps-region.c

index 3109393775051b0112374d827e8da502e63ed06f..5d342b5a74432f0a8f9ceba63b3eb3fb99565d96 100644 (file)
@@ -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
 }