summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/concrete-address.c
blob: d460df071595dd7f28e94ec08ad29fcfd54e918a (plain)
1
2
3
4
5
6
// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-store=region -verify %s

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