aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/z3/apsint.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Analysis/z3/apsint.c')
-rw-r--r--test/Analysis/z3/apsint.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/Analysis/z3/apsint.c b/test/Analysis/z3/apsint.c
new file mode 100644
index 000000000000..670ef2be1c59
--- /dev/null
+++ b/test/Analysis/z3/apsint.c
@@ -0,0 +1,16 @@
+// RUN: %clang_analyze_cc1 -triple x86_64-unknown-linux-gnu -analyzer-checker=core -verify %s
+// expected-no-diagnostics
+
+// https://bugs.llvm.org/show_bug.cgi?id=37622
+_Bool a() {
+ return !({ a(); });
+}
+
+// https://bugs.llvm.org/show_bug.cgi?id=37646
+_Bool b;
+void c() {
+ _Bool a = b | 0;
+ for (;;)
+ if (a)
+ ;
+}