Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / warn-thread-safety-analysis.mm
bloba50c6f2ee131ce6d96c7f54eb101875112b6f726
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wthread-safety -Wthread-safety-beta -Wno-objc-root-class %s
3 #include "thread-safety-analysis.h"
5 @interface MyInterface {
6 @private
7   Lock lock_;
8   int value_;
11 - (void)incrementValue;
12 - (void)decrementValue;
14 @end
16 @implementation MyInterface
18 - (void)incrementValue {
19   AutoLock lock(lock_);
20   value_ += 1;
23 - (void)decrementValue {
24   lock_.Acquire(); // expected-note{{mutex acquired here}}
25   value_ -= 1;
26 } // expected-warning{{mutex 'self->lock_' is still held at the end of function}}
28 @end