foo(int p,int q)1 void foo(int p, int q)
2 {
3   if (p)
4     {
5       if (q)
6         __builtin_trap ();
7     }
8   else
9     bar();
10 }
11