2017-03-03 07:30:53 +08:00
|
|
|
// RUN: %clang_cc1 -fblocks -analyze -analyzer-checker=core -verify %s
|
2012-02-10 05:59:52 +08:00
|
|
|
|
|
|
|
// For now, don't inline varargs.
|
|
|
|
void foo(int *x, ...) {
|
|
|
|
*x = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bar() {
|
|
|
|
foo(0, 2); // no-warning
|
|
|
|
}
|
|
|
|
|
|
|
|
// For now, don't inline vararg blocks.
|
|
|
|
void (^baz)(int *x, ...) = ^(int *x, ...) { *x = 1; };
|
|
|
|
|
|
|
|
void taz() {
|
|
|
|
baz(0, 2); // no-warning
|
|
|
|
}
|
|
|
|
|
2012-08-22 05:44:07 +08:00
|
|
|
// For now, don't inline global blocks.
|
2012-02-10 05:59:52 +08:00
|
|
|
void (^qux)(int *p) = ^(int *p) { *p = 1; };
|
|
|
|
void test_qux() {
|
|
|
|
qux(0); // no-warning
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void test_analyzer_is_running() {
|
|
|
|
int *p = 0;
|
|
|
|
*p = 0xDEADBEEF; // expected-warning {{null}}
|
|
|
|
}
|