8 lines
233 B
C
8 lines
233 B
C
// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic --verify %s &&
|
|
// RUN: clang-cc -analyze -checker-cfref -analyzer-store=region --verify %s
|
|
|
|
void foo() {
|
|
int *p = (int*) 0x10000; // Should not crash here.
|
|
*p = 3;
|
|
}
|