[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Analysis / new-ctor-conservative.cpp
blob1fcb6708e43e1b3cc0794847d30492e1fe7cf3cf
1 // RUN: %clang_analyze_cc1 -w -analyzer-checker=core,debug.ExprInspection -analyzer-config c++-allocator-inlining=true -std=c++11 -verify -analyzer-config eagerly-assume=false %s
3 void clang_analyzer_eval(bool);
4 void clang_analyzer_warnIfReached();
6 struct S {
7 int x;
8 S() : x(1) {}
9 ~S() {}
12 void checkConstructorInlining() {
13 S *s = new S;
14 clang_analyzer_eval(s->x == 1); // expected-warning{{TRUE}}
17 void checkNewPODunit() {
18 int *i = new int;
19 clang_analyzer_eval(*i == 0); // expected-warning{{The left operand of '==' is a garbage value [core.UndefinedBinaryOperatorResult]}}
22 void checkNewPOD() {
23 int *j = new int();
24 clang_analyzer_eval(*j == 0); // expected-warning{{TRUE}}
25 int *k = new int(5);
26 clang_analyzer_eval(*k == 5); // expected-warning{{TRUE}}
29 void checkNewArray() {
30 S *s = new S[10];
32 // FIXME: Handle big array construction
33 clang_analyzer_eval(s[0].x == 1); // expected-warning{{UNKNOWN}}
34 clang_analyzer_eval(s[1].x == 1); // expected-warning{{UNKNOWN}}
36 s = new S[4];
37 clang_analyzer_eval(s[0].x == 1); // expected-warning{{TRUE}}
38 clang_analyzer_eval(s[1].x == 1); // expected-warning{{TRUE}}
41 struct NullS {
42 NullS() {
43 if (this) {}
45 NullS(int x) {
46 if (!this) {
47 clang_analyzer_warnIfReached(); // no-warning
52 void checkNullThis() {
53 NullS *nulls = new NullS(); // no-crash
54 NullS *nulls2 = new NullS(0);