summaryrefslogtreecommitdiffstats
path: root/test/Analysis/concrete-address.c
blob: 07ca7136e2f352655ebb23ec1ce84ea51762f23b (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=basic -verify %s
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -verify %s

void foo() {
  int *p = (int*) 0x10000; // Should not crash here.
  *p = 3;
}
OpenPOWER on IntegriCloud