blob: 670ef2be1c599d2bee7e2326acec5faac9a7e22e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
;
}
|