blob: 0694f7bd4c26fd1b0d661b118d5b598ee3a602e5 [file] [log] [blame]
Argyrios Kyrtzidisc4d2c902011-02-28 19:49:42 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core,core.experimental -analyzer-store=basic -verify %s
2// RUN: %clang_cc1 -analyze -analyzer-checker=core,core.experimental -analyzer-store=region -verify %s
Zhongxing Xuc4988482008-10-22 14:39:20 +00003
4void f(void) {
5 void (*p)(void);
6 p = f;
Tom Care6216dc02010-08-30 19:25:43 +00007 p = &f;
Zhongxing Xuc4988482008-10-22 14:39:20 +00008 p();
9 (*p)();
10}
Zhongxing Xu92429dd2008-10-27 09:21:27 +000011
12void g(void (*fp)(void));
13
14void f2() {
15 g(f);
16}