[cfe-commits] r68084 - /cfe/trunk/test/Analysis/dead-stores.c
Ted Kremenek
kremenek at apple.com
Mon Mar 30 20:34:43 PDT 2009
Author: kremenek
Date: Mon Mar 30 22:34:38 2009
New Revision: 68084
URL: http://llvm.org/viewvc/llvm-project?rev=68084&view=rev
Log:
Update test case.
Modified:
cfe/trunk/test/Analysis/dead-stores.c
Modified: cfe/trunk/test/Analysis/dead-stores.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/dead-stores.c?rev=68084&r1=68083&r2=68084&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/dead-stores.c (original)
+++ cfe/trunk/test/Analysis/dead-stores.c Mon Mar 30 22:34:38 2009
@@ -161,9 +161,9 @@
return x;
}
-int f19b(void) { // FIXME: Should this case be considered the same as f19?
+int f19b(void) { // This case is the same as f19.
const int MyConstant = 0;
- int x = MyConstant; // expected-warning{{never read}}
+ int x = MyConstant; // no-warning
x = 1;
return x;
}
More information about the cfe-commits
mailing list