[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Analysis / misc-ps-region-store.mm
blob4b271c4512dc81aab72fdb3f58ebe40796ae4d1e
1 // RUN: %clang_analyze_cc1 -triple i386-apple-darwin9 -analyzer-checker=core,alpha.core -analyzer-store=region -verify -fblocks -analyzer-opt-analyze-nested-blocks %s
2 // RUN: %clang_analyze_cc1 -triple x86_64-apple-darwin9 -analyzer-checker=core,alpha.core -analyzer-store=region -verify -fblocks   -analyzer-opt-analyze-nested-blocks %s
3 // expected-no-diagnostics
5 //===------------------------------------------------------------------------------------------===//
6 // This files tests our path-sensitive handling of Objective-c++ files.
7 //===------------------------------------------------------------------------------------------===//
9 // Test basic handling of references.
10 char &test1_aux();
11 char *test1() {
12   return &test1_aux();
15 // Test test1_aux() evaluates to char &.
16 char test1_as_rvalue() {
17   return test1_aux();
20 // Test basic handling of references with Objective-C classes.
21 @interface Test1
22 - (char&) foo;
23 @end
25 char* Test1_harness(Test1 *p) {
26   return &[p foo];
29 char Test1_harness_b(Test1 *p) {
30   return [p foo];
33 // Basic test of C++ references with Objective-C pointers.
34 @interface RDar10569024
35 @property(readonly) int x;
36 @end
38 typedef RDar10569024* RDar10569024Ref;
40 void rdar10569024_aux(RDar10569024Ref o);
42 int rdar10569024(id p, id collection) {
43   for (id elem in collection) {
44     const RDar10569024Ref &o = (RDar10569024Ref) elem;
45     rdar10569024_aux(o); // no-warning
46     return o.x; // no-warning
47   }
48   return 0;