diff options
author | Mike Stump <mrs@apple.com> | 2009-07-21 19:01:31 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-21 19:01:31 +0000 |
commit | d6fce57ba794be67ece1d4a2711d326695f381ea (patch) | |
tree | 2057def83430896a0126f7c74815d31b4c40289a /clang | |
parent | 414c3b435af26607e93f161d846d214c81729462 (diff) | |
download | bcm5719-llvm-d6fce57ba794be67ece1d4a2711d326695f381ea.tar.gz bcm5719-llvm-d6fce57ba794be67ece1d4a2711d326695f381ea.zip |
Prep for new warning.
llvm-svn: 76625
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/Analysis/dead-stores.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/dead-stores.c b/clang/test/Analysis/dead-stores.c index f3ff1451bea..fb4f73ae072 100644 --- a/clang/test/Analysis/dead-stores.c +++ b/clang/test/Analysis/dead-stores.c @@ -131,7 +131,7 @@ int f16(int x) { } // Self-assignments should not be flagged as dead stores. -int f17() { +void f17() { int x = 1; x = x; // no-warning } |