// RUN: %clang_analyze_cc1 -triple x86_64-apple-darwin10 -disable-free -verify %s \
// RUN: -analyzer-checker=core,deadcode,alpha.security.taint,debug.TaintTest,debug.ExprInspection
void ;
// Note, we do need to include headers here, since the analyzer checks if the function declaration is located in a system header.
// Test that system header does not invalidate the internal global.
int size_rdar9373039 = 1;
int
// Test stdin does not get invalidated by a system call nor by an internal call.
void ;
int
// Test that const integer does not get invalidated.
const int x = 0;
int
extern const int y;
int
static void * const ptr = 0;
void
static const int x2 = x;
void
void
// Test that static variables with initializers do not get reinitialized on
// recursive calls.
void ;
int *;
void
void
void