Summary: Replace calls to %clang/%clang_cc1 with %clang_analyze_cc1 when invoking static analyzer, and perform runtime substitution to select the appropriate constraint manager, per D28952. Reviewers: xazax.hun, NoQ, zaks.anna, dcoughlin Subscribers: mgorny, rgov, mikhail.ramalho, a.sidorin, cfe-commits Differential Revision: https://reviews.llvm.org/D30373 llvm-svn: 296895
17 lines
573 B
C++
17 lines
573 B
C++
// RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection %s -analyzer-output=text -verify
|
|
|
|
void clang_analyzer_eval(bool);
|
|
|
|
// Test that the analyzer does not crash on GNU extension operator "?:".
|
|
void NoCrashTest(int x, int y) {
|
|
int w = x ?: y;
|
|
}
|
|
|
|
void OperatorEvaluationTest(int y) {
|
|
int x = 1;
|
|
int w = x ?: y; // expected-note {{'?' condition is true}}
|
|
|
|
// TODO: We are not precise when processing the "?:" operator in C++.
|
|
clang_analyzer_eval(w == 1); // expected-warning{{UNKNOWN}}
|
|
// expected-note@-1{{UNKNOWN}}
|
|
} |