concrete-address.c revision cdc3a89d5de90b2299c56f4a46c3de590c5184d1
1// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-store=region -verify %s
2
3void foo() {
4  int *p = (int*) 0x10000; // Should not crash here.
5  *p = 3;
6}
7