function_hooks: update comment explaining various function hooks
[smatch.git] / validation / crash-select.c
blobcec00baf8860c253ddd5ff93d1d21f818302b7e6
1 struct s {
2 void *b;
3 long c;
4 };
6 long d(void);
7 static long f(void)
9 struct s s;
10 s.c = d();
11 if (s.c)
12 s.c = 2;
13 return s.c;
17 * check-name: crash-select