[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / Analysis / concrete-address.c
blob07ca7136e2f352655ebb23ec1ce84ea51762f23b
1 // RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=basic -verify %s
2 // RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -verify %s
4 void foo() {
5 int *p = (int*) 0x10000; // Should not crash here.
6 *p = 3;