commit | 42268463fb151b80fecd2e85ce375df0acfbbcb2 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Thu Dec 04 02:07:20 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Thu Dec 04 02:07:20 2008 +0000 |
tree | bd4657ecd8ae913aa66e4544e47d013693645487 | |
parent | f117facb5ade615965bdd76a870659fe1f62f302 [diff] |
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 3109393..5d342b5 100644 --- a/test/Analysis/uninit-vals-ps-region.c +++ b/test/Analysis/uninit-vals-ps-region.c
@@ -12,6 +12,6 @@ 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 }