You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
398 B
24 lines
398 B
// RUN: %clang --analyze %s -o %t -Xclang -verify
|
|
// expected-no-diagnostics
|
|
|
|
// Test handling of ObjC bool literals.
|
|
|
|
typedef signed char BOOL;
|
|
|
|
void rdar_10597458() {
|
|
if (__objc_yes)
|
|
return;
|
|
int *p = 0;
|
|
*p = 0xDEADBEEF; // no-warning
|
|
}
|
|
|
|
void rdar_10597458_b(BOOL b) {
|
|
if (b == __objc_no)
|
|
return;
|
|
|
|
if (b == __objc_no) {
|
|
int *p = 0;
|
|
*p = 0xDEADBEEF; // no-warning
|
|
}
|
|
}
|