YouCompleteMe/cpp/llvm/tools/clang/test/Analysis/inline-not-supported.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

30 lines
593 B
C

// RUN: %clang_cc1 -fblocks -analyze -analyzer-checker=core -analyzer-ipa=inlining -analyzer-store region -verify %s
// 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
}
// For now, don't inline blocks.
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}}
}