aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Analysis/bitwise-ops.c14
-rw-r--r--test/Analysis/traversal-path-unification.c9
2 files changed, 22 insertions, 1 deletions
diff --git a/test/Analysis/bitwise-ops.c b/test/Analysis/bitwise-ops.c
new file mode 100644
index 0000000000..bf282eca27
--- /dev/null
+++ b/test/Analysis/bitwise-ops.c
@@ -0,0 +1,14 @@
+// RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -verify %s
+
+void clang_analyzer_eval(int);
+#define CHECK(expr) if (!(expr)) return; clang_analyzer_eval(expr)
+
+void testPersistentConstraints(int x, int y) {
+ // Sanity check
+ CHECK(x); // expected-warning{{TRUE}}
+ CHECK(x & 1); // expected-warning{{TRUE}}
+
+ // False positives due to SValBuilder giving up on certain kinds of exprs.
+ CHECK(1 - x); // expected-warning{{UNKNOWN}}
+ CHECK(x & y); // expected-warning{{UNKNOWN}}
+} \ No newline at end of file
diff --git a/test/Analysis/traversal-path-unification.c b/test/Analysis/traversal-path-unification.c
index 0a45f48a01..f53d2ff9fe 100644
--- a/test/Analysis/traversal-path-unification.c
+++ b/test/Analysis/traversal-path-unification.c
@@ -1,12 +1,19 @@
// RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.DumpTraversal %s | FileCheck %s
+// RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.DumpTraversal -DUSE_EXPR %s | FileCheck %s
int a();
int b();
int c();
+#ifdef USE_EXPR
+#define CHECK(x) ((x) & 1)
+#else
+#define CHECK(x) (x)
+#endif
+
void testRemoveDeadBindings() {
int i = a();
- if (i)
+ if (CHECK(i))
a();
else
b();