xref: /minix3/external/bsd/llvm/dist/clang/test/Analysis/inline-plist.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang --analyze %s -fblocks -Xanalyzer -analyzer-output=text -Xanalyzer -analyzer-config -Xanalyzer suppress-null-return-paths=false -Xclang -verify %s
2*f4a2713aSLionel Sambuc // RUN: %clang --analyze %s -fblocks -Xanalyzer -analyzer-config -Xanalyzer suppress-null-return-paths=false -Xanalyzer -analyzer-config -Xanalyzer path-diagnostics-alternate=false -o %t
3*f4a2713aSLionel Sambuc // RUN: FileCheck -input-file %t %s
4*f4a2713aSLionel Sambuc 
5*f4a2713aSLionel Sambuc // <rdar://problem/10967815>
mmm(int y)6*f4a2713aSLionel Sambuc void mmm(int y) {
7*f4a2713aSLionel Sambuc   if (y != 0)
8*f4a2713aSLionel Sambuc     y++;
9*f4a2713aSLionel Sambuc }
10*f4a2713aSLionel Sambuc 
foo(int x,int y)11*f4a2713aSLionel Sambuc int foo(int x, int y) {
12*f4a2713aSLionel Sambuc   mmm(y);
13*f4a2713aSLionel Sambuc   if (x != 0) {
14*f4a2713aSLionel Sambuc     // expected-note@-1 {{Assuming 'x' is equal to 0}}
15*f4a2713aSLionel Sambuc     // expected-note@-2 {{Taking false branch}}
16*f4a2713aSLionel Sambuc     x++;
17*f4a2713aSLionel Sambuc   }
18*f4a2713aSLionel Sambuc   return 5/x; // expected-warning{{Division by zero}} expected-note{{Division by zero}}
19*f4a2713aSLionel Sambuc }
20*f4a2713aSLionel Sambuc 
21*f4a2713aSLionel Sambuc // Test a bug triggering only when inlined.
has_bug(int * p)22*f4a2713aSLionel Sambuc void has_bug(int *p) {
23*f4a2713aSLionel Sambuc   *p = 0xDEADBEEF; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} expected-note{{Dereference of null pointer (loaded from variable 'p')}}
24*f4a2713aSLionel Sambuc }
25*f4a2713aSLionel Sambuc 
test_has_bug()26*f4a2713aSLionel Sambuc void test_has_bug() {
27*f4a2713aSLionel Sambuc   has_bug(0);
28*f4a2713aSLionel Sambuc   // expected-note@-1 {{Passing null pointer value via 1st parameter 'p'}}
29*f4a2713aSLionel Sambuc   // expected-note@-2 {{Calling 'has_bug'}}
30*f4a2713aSLionel Sambuc }
31*f4a2713aSLionel Sambuc 
triggers_bug(int * p)32*f4a2713aSLionel Sambuc void triggers_bug(int *p) {
33*f4a2713aSLionel Sambuc   *p = 0xDEADBEEF; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} expected-note{{Dereference of null pointer (loaded from variable 'p')}}
34*f4a2713aSLionel Sambuc }
35*f4a2713aSLionel Sambuc 
36*f4a2713aSLionel Sambuc // This function triggers a bug by calling triggers_bug().  The diagnostics
37*f4a2713aSLionel Sambuc // should show when p is assumed to be null.
bar(int * p)38*f4a2713aSLionel Sambuc void bar(int *p) {
39*f4a2713aSLionel Sambuc   if (!!p) {
40*f4a2713aSLionel Sambuc     // expected-note@-1 {{Assuming 'p' is null}}
41*f4a2713aSLionel Sambuc     // expected-note@-2 {{Taking false branch}}
42*f4a2713aSLionel Sambuc     return;
43*f4a2713aSLionel Sambuc   }
44*f4a2713aSLionel Sambuc 
45*f4a2713aSLionel Sambuc   if (p == 0) {
46*f4a2713aSLionel Sambuc     // expected-note@-1 {{Taking true branch}}
47*f4a2713aSLionel Sambuc     triggers_bug(p);
48*f4a2713aSLionel Sambuc     // expected-note@-1 {{Passing null pointer value via 1st parameter 'p'}}
49*f4a2713aSLionel Sambuc     // expected-note@-2 {{Calling 'triggers_bug'}}
50*f4a2713aSLionel Sambuc   }
51*f4a2713aSLionel Sambuc }
52*f4a2713aSLionel Sambuc 
53*f4a2713aSLionel Sambuc // ========================================================================== //
54*f4a2713aSLionel Sambuc // Test inlining of blocks.
55*f4a2713aSLionel Sambuc // ========================================================================== //
56*f4a2713aSLionel Sambuc 
test_block__capture_null()57*f4a2713aSLionel Sambuc void test_block__capture_null() {
58*f4a2713aSLionel Sambuc   int *p = 0; // expected-note{{'p' initialized to a null pointer value}}
59*f4a2713aSLionel Sambuc   ^(){ // expected-note {{Calling anonymous block}}
60*f4a2713aSLionel Sambuc     *p = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} expected-note{{Dereference of null pointer (loaded from variable 'p')}}
61*f4a2713aSLionel Sambuc   }();
62*f4a2713aSLionel Sambuc 
63*f4a2713aSLionel Sambuc }
64*f4a2713aSLionel Sambuc 
test_block_ret()65*f4a2713aSLionel Sambuc void test_block_ret() {
66*f4a2713aSLionel Sambuc   int *p = ^int*(){ // expected-note {{Calling anonymous block}} expected-note{{Returning to caller}} expected-note {{'p' initialized to a null pointer value}}
67*f4a2713aSLionel Sambuc     int *q = 0; // expected-note {{'q' initialized to a null pointer value}}
68*f4a2713aSLionel Sambuc     return q; // expected-note {{Returning null pointer (loaded from 'q')}}
69*f4a2713aSLionel Sambuc   }();
70*f4a2713aSLionel Sambuc   *p = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} expected-note{{Dereference of null pointer (loaded from variable 'p')}}
71*f4a2713aSLionel Sambuc }
72*f4a2713aSLionel Sambuc 
test_block_blockvar()73*f4a2713aSLionel Sambuc void test_block_blockvar() {
74*f4a2713aSLionel Sambuc   __block int *p;
75*f4a2713aSLionel Sambuc   ^(){ // expected-note{{Calling anonymous block}} expected-note{{Returning to caller}}
76*f4a2713aSLionel Sambuc     p = 0; // expected-note{{Null pointer value stored to 'p'}}
77*f4a2713aSLionel Sambuc   }();
78*f4a2713aSLionel Sambuc   *p = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} expected-note{{Dereference of null pointer (loaded from variable 'p')}}
79*f4a2713aSLionel Sambuc }
80*f4a2713aSLionel Sambuc 
test_block_arg()81*f4a2713aSLionel Sambuc void test_block_arg() {
82*f4a2713aSLionel Sambuc   int *p;
83*f4a2713aSLionel Sambuc   ^(int **q){ // expected-note{{Calling anonymous block}} expected-note{{Returning to caller}}
84*f4a2713aSLionel Sambuc     *q = 0; // expected-note{{Null pointer value stored to 'p'}}
85*f4a2713aSLionel Sambuc   }(&p);
86*f4a2713aSLionel Sambuc   *p = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} expected-note{{Dereference of null pointer (loaded from variable 'p')}}
87*f4a2713aSLionel Sambuc }
88*f4a2713aSLionel Sambuc 
89*f4a2713aSLionel Sambuc // CHECK:  <key>diagnostics</key>
90*f4a2713aSLionel Sambuc // CHECK-NEXT:  <array>
91*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
92*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
93*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
94*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
95*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
96*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
97*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
98*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
99*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
100*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
101*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
102*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
103*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
104*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
105*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
106*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
107*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>12</integer>
108*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
109*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
110*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
111*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
112*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
113*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
114*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
115*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
116*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
117*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
118*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
119*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
120*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
121*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
122*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
123*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
124*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
125*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
126*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
127*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
128*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
129*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
130*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
131*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
132*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
133*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
134*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
135*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
136*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
137*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
138*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
139*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
140*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
141*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
142*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
143*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
144*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
145*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
146*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
147*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
148*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
149*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
150*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
151*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
152*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
153*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
154*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
155*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
156*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
157*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
158*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
159*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
160*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
161*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
162*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
163*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
164*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
165*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
166*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>13</integer>
167*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>7</integer>
168*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
169*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
170*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
171*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
172*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
173*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
174*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>13</integer>
175*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>7</integer>
176*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
177*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
178*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
179*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>13</integer>
180*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>12</integer>
181*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
182*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
183*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
184*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
185*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
186*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
187*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;x&apos; is equal to 0</string>
188*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
189*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;x&apos; is equal to 0</string>
190*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
191*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
192*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
193*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
194*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
195*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
196*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
197*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
198*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
199*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
200*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
201*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
202*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
203*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
204*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>13</integer>
205*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
206*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
207*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
208*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
209*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
210*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
211*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
212*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>18</integer>
213*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
214*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
215*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
216*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
217*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>18</integer>
218*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
219*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
220*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
221*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
222*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
223*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
224*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
225*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
226*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
227*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
228*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
229*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
230*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
231*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
232*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
233*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>18</integer>
234*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
235*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
236*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
237*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
238*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>18</integer>
239*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
240*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
241*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
242*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
243*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
244*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
245*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
246*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>18</integer>
247*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>11</integer>
248*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
249*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
250*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
251*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>18</integer>
252*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>11</integer>
253*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
254*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
255*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
256*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
257*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
258*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
259*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
260*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
261*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
262*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
263*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>18</integer>
264*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>11</integer>
265*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
266*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
267*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
268*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
269*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
270*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
271*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>18</integer>
272*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>10</integer>
273*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
274*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
275*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
276*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>18</integer>
277*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>12</integer>
278*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
279*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
280*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
281*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
282*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
283*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
284*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Division by zero</string>
285*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
286*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Division by zero</string>
287*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
288*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
289*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Division by zero</string>
290*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
291*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Division by zero</string>
292*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
293*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>foo</string>
294*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>7</string>
295*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
296*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
297*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>18</integer>
298*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>11</integer>
299*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
300*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
301*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
302*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
303*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
304*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
305*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
306*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
307*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
308*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
309*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
310*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
311*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
312*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
313*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>27</integer>
314*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
315*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
316*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
317*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
318*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>27</integer>
319*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
320*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
321*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
322*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
323*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
324*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
325*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
326*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>27</integer>
327*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>11</integer>
328*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
329*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
330*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
331*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>27</integer>
332*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>11</integer>
333*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
334*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
335*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
336*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
337*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
338*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
339*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
340*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
341*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
342*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
343*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>27</integer>
344*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>11</integer>
345*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
346*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
347*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
348*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
349*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
350*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
351*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>27</integer>
352*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>11</integer>
353*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
354*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
355*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
356*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>27</integer>
357*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>11</integer>
358*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
359*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
360*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
361*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
362*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
363*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
364*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Passing null pointer value via 1st parameter &apos;p&apos;</string>
365*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
366*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Passing null pointer value via 1st parameter &apos;p&apos;</string>
367*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
368*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
369*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
370*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
371*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
372*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>27</integer>
373*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
374*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
375*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
376*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
377*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
378*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
379*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
380*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>27</integer>
381*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
382*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
383*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
384*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
385*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>27</integer>
386*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>12</integer>
387*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
388*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
389*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
390*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
391*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
392*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
393*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling &apos;has_bug&apos;</string>
394*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
395*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling &apos;has_bug&apos;</string>
396*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
397*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
398*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
399*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
400*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
401*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>22</integer>
402*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>1</integer>
403*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
404*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
405*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
406*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
407*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_has_bug&apos;</string>
408*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
409*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_has_bug&apos;</string>
410*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
411*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
412*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
413*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
414*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
415*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
416*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
417*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
418*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
419*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>22</integer>
420*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>1</integer>
421*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
422*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
423*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
424*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>22</integer>
425*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
426*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
427*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
428*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
429*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
430*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
431*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
432*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>23</integer>
433*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
434*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
435*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
436*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
437*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>23</integer>
438*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
439*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
440*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
441*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
442*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
443*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
444*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
445*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
446*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
447*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
448*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
449*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
450*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
451*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
452*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
453*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>23</integer>
454*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
455*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
456*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
457*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
458*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>23</integer>
459*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
460*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
461*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
462*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
463*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
464*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
465*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
466*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>23</integer>
467*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
468*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
469*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
470*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
471*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>23</integer>
472*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
473*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
474*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
475*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
476*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
477*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
478*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
479*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
480*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
481*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
482*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
483*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>23</integer>
484*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>6</integer>
485*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
486*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
487*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
488*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
489*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
490*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
491*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>23</integer>
492*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
493*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
494*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
495*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
496*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>23</integer>
497*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
498*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
499*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
500*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
501*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
502*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
503*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
504*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
505*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
506*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
507*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
508*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
509*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
510*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
511*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
512*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
513*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>has_bug</string>
514*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>1</string>
515*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
516*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
517*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>23</integer>
518*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>6</integer>
519*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
520*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
521*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
522*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
523*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
524*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
525*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
526*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
527*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
528*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
529*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
530*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
531*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
532*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
533*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
534*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
535*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
536*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
537*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
538*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
539*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
540*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
541*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
542*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
543*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
544*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
545*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
546*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
547*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
548*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
549*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
550*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
551*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
552*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
553*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
554*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
555*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
556*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
557*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
558*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
559*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
560*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
561*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
562*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
563*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>39</integer>
564*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>8</integer>
565*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
566*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
567*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
568*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
569*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
570*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
571*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>39</integer>
572*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>8</integer>
573*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
574*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
575*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
576*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>39</integer>
577*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>9</integer>
578*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
579*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
580*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
581*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
582*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
583*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
584*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;p&apos; is null</string>
585*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
586*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Assuming &apos;p&apos; is null</string>
587*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
588*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
589*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
590*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
591*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
592*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
593*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
594*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
595*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
596*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
597*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
598*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
599*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
600*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
601*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>39</integer>
602*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
603*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
604*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
605*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
606*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
607*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
608*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
609*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>45</integer>
610*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
611*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
612*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
613*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
614*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>45</integer>
615*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
616*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
617*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
618*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
619*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
620*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
621*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
622*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
623*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
624*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
625*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
626*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
627*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
628*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
629*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
630*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>45</integer>
631*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
632*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
633*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
634*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
635*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>45</integer>
636*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
637*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
638*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
639*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
640*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
641*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
642*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
643*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>47</integer>
644*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
645*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
646*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
647*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
648*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>47</integer>
649*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>16</integer>
650*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
651*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
652*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
653*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
654*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
655*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
656*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
657*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
658*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
659*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
660*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
661*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
662*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
663*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
664*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>47</integer>
665*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
666*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
667*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
668*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
669*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>47</integer>
670*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>16</integer>
671*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
672*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
673*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
674*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
675*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
676*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
677*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>47</integer>
678*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>18</integer>
679*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
680*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
681*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
682*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>47</integer>
683*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>18</integer>
684*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
685*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
686*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
687*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
688*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
689*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
690*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
691*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
692*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
693*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
694*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>47</integer>
695*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>18</integer>
696*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
697*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
698*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
699*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
700*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
701*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
702*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>47</integer>
703*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>18</integer>
704*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
705*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
706*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
707*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>47</integer>
708*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>18</integer>
709*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
710*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
711*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
712*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
713*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
714*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
715*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Passing null pointer value via 1st parameter &apos;p&apos;</string>
716*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
717*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Passing null pointer value via 1st parameter &apos;p&apos;</string>
718*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
719*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
720*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
721*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
722*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
723*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>47</integer>
724*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>5</integer>
725*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
726*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
727*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
728*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
729*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
730*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
731*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>47</integer>
732*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
733*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
734*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
735*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
736*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>47</integer>
737*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>19</integer>
738*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
739*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
740*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
741*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
742*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
743*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
744*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling &apos;triggers_bug&apos;</string>
745*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
746*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling &apos;triggers_bug&apos;</string>
747*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
748*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
749*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
750*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
751*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
752*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>32</integer>
753*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>1</integer>
754*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
755*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
756*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
757*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
758*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;bar&apos;</string>
759*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
760*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;bar&apos;</string>
761*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
762*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
763*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
764*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
765*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
766*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
767*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
768*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
769*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
770*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>32</integer>
771*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>1</integer>
772*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
773*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
774*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
775*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>32</integer>
776*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>4</integer>
777*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
778*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
779*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
780*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
781*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
782*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
783*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
784*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
785*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
786*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
787*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
788*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
789*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
790*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
791*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
792*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
793*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
794*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
795*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
796*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
797*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
798*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
799*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
800*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
801*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
802*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
803*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
804*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
805*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
806*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
807*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
808*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
809*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
810*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
811*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
812*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
813*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
814*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
815*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
816*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
817*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
818*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
819*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
820*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
821*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
822*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>33</integer>
823*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
824*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
825*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
826*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
827*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
828*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
829*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
830*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
831*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
832*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
833*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
834*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>33</integer>
835*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>6</integer>
836*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
837*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
838*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
839*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
840*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
841*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
842*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>33</integer>
843*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
844*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
845*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
846*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
847*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>33</integer>
848*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
849*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
850*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
851*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
852*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
853*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
854*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
855*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
856*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
857*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
858*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
859*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
860*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
861*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
862*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
863*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
864*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>triggers_bug</string>
865*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>1</string>
866*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
867*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
868*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>33</integer>
869*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>6</integer>
870*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
871*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
872*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
873*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
874*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
875*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
876*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
877*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
878*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
879*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
880*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>58</integer>
881*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
882*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
883*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
884*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
885*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
886*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
887*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
888*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>58</integer>
889*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
890*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
891*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
892*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
893*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>58</integer>
894*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>8</integer>
895*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
896*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
897*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
898*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
899*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
900*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
901*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>&apos;p&apos; initialized to a null pointer value</string>
902*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
903*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>&apos;p&apos; initialized to a null pointer value</string>
904*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
905*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
906*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
907*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
908*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
909*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
910*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
911*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
912*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
913*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>58</integer>
914*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
915*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
916*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
917*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
918*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>58</integer>
919*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
920*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
921*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
922*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
923*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
924*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
925*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
926*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>59</integer>
927*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
928*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
929*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
930*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
931*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>59</integer>
932*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
933*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
934*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
935*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
936*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
937*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
938*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
939*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
940*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
941*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
942*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
943*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>59</integer>
944*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
945*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
946*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
947*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
948*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
949*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
950*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
951*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>59</integer>
952*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
953*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
954*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
955*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
956*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>61</integer>
957*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
958*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
959*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
960*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
961*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
962*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
963*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
964*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
965*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
966*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
967*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
968*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
969*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
970*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
971*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
972*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>59</integer>
973*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
974*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
975*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
976*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
977*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
978*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block__capture_null&apos;</string>
979*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
980*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block__capture_null&apos;</string>
981*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
982*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
983*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
984*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
985*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
986*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
987*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
988*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
989*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
990*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>59</integer>
991*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
992*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
993*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
994*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
995*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>59</integer>
996*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
997*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
998*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
999*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1000*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1001*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1002*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1003*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>60</integer>
1004*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1005*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1006*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1007*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1008*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>60</integer>
1009*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1010*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1011*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1012*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1013*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1014*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1015*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1016*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1017*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1018*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1019*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1020*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1021*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1022*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1023*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1024*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>60</integer>
1025*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1026*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1027*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1028*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1029*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>60</integer>
1030*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1031*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1032*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1033*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1034*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1035*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1036*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1037*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>60</integer>
1038*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
1039*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1040*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1041*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1042*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>60</integer>
1043*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>8</integer>
1044*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1045*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1046*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1047*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1048*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1049*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1050*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1051*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1052*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1053*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1054*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>60</integer>
1055*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>8</integer>
1056*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1057*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1058*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1059*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1060*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1061*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1062*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>60</integer>
1063*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>6</integer>
1064*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1065*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1066*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1067*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>60</integer>
1068*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>6</integer>
1069*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1070*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1071*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1072*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1073*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1074*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1075*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1076*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1077*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1078*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1079*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1080*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1081*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1082*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1083*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1084*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1085*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>60</integer>
1086*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>8</integer>
1087*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1088*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1089*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1090*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1091*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
1092*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
1093*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1094*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1095*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1096*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1097*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1098*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1099*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1100*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1101*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1102*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1103*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1104*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1105*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1106*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1107*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1108*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1109*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1110*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1111*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1112*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1113*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1114*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1115*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>12</integer>
1116*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1117*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1118*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1119*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1120*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>12</integer>
1121*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1122*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1123*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1124*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1125*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1126*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1127*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1128*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1129*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1130*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1131*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>66</integer>
1132*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>12</integer>
1133*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1134*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1135*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1136*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1137*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1138*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1139*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>66</integer>
1140*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>12</integer>
1141*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1142*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1143*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1144*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>69</integer>
1145*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1146*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1147*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1148*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1149*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1150*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1151*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1152*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
1153*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1154*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
1155*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1156*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1157*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1158*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1159*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1160*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>66</integer>
1161*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>12</integer>
1162*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1163*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1164*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1165*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1166*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block_ret&apos;</string>
1167*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1168*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block_ret&apos;</string>
1169*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1170*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1171*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1172*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1173*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1174*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1175*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1176*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1177*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1178*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1179*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>12</integer>
1180*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1181*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1182*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1183*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1184*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>12</integer>
1185*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1186*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1187*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1188*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1189*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1190*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1191*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>67</integer>
1192*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1193*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1194*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1195*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1196*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>67</integer>
1197*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1198*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1199*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1200*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1201*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1202*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1203*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1204*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1205*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1206*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1207*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1208*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>67</integer>
1209*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>5</integer>
1210*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1211*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1212*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1213*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1214*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1215*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1216*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>67</integer>
1217*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1218*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1219*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1220*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1221*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>67</integer>
1222*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>10</integer>
1223*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1224*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1225*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1226*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1227*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1228*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1229*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>&apos;q&apos; initialized to a null pointer value</string>
1230*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1231*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>&apos;q&apos; initialized to a null pointer value</string>
1232*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1233*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1234*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1235*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1236*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1237*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1238*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1239*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1240*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1241*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>67</integer>
1242*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1243*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1244*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1245*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1246*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>67</integer>
1247*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>7</integer>
1248*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1249*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1250*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1251*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1252*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1253*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1254*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>68</integer>
1255*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1256*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1257*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1258*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1259*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>68</integer>
1260*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>10</integer>
1261*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1262*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1263*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1264*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1265*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1266*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1267*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1268*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1269*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1270*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1271*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>68</integer>
1272*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>5</integer>
1273*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1274*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1275*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1276*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1277*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1278*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1279*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>68</integer>
1280*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1281*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1282*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1283*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1284*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>68</integer>
1285*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>12</integer>
1286*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1287*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1288*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1289*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1290*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1291*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1292*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning null pointer (loaded from &apos;q&apos;)</string>
1293*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1294*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning null pointer (loaded from &apos;q&apos;)</string>
1295*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1296*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1297*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1298*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1299*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1300*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>66</integer>
1301*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>12</integer>
1302*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1303*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1304*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1305*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1306*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1307*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1308*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>66</integer>
1309*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>12</integer>
1310*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1311*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1312*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1313*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>69</integer>
1314*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1315*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1316*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1317*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1318*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1319*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1320*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1321*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning to caller</string>
1322*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1323*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning to caller</string>
1324*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1325*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1326*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1327*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1328*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1329*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1330*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1331*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1332*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1333*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1334*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>12</integer>
1335*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1336*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1337*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1338*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1339*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>12</integer>
1340*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1341*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1342*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1343*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1344*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1345*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1346*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1347*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1348*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1349*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1350*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1351*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1352*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1353*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1354*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1355*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1356*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1357*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1358*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1359*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1360*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1361*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1362*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1363*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>66</integer>
1364*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1365*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1366*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1367*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1368*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1369*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1370*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1371*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>66</integer>
1372*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1373*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1374*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1375*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1376*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>66</integer>
1377*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>8</integer>
1378*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1379*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1380*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1381*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1382*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1383*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1384*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>&apos;p&apos; initialized to a null pointer value</string>
1385*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1386*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>&apos;p&apos; initialized to a null pointer value</string>
1387*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1388*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1389*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1390*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1391*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1392*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1393*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1394*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1395*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1396*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1397*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1398*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1399*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1400*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1401*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>66</integer>
1402*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1403*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1404*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1405*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1406*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1407*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1408*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1409*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>70</integer>
1410*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1411*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1412*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1413*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1414*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>70</integer>
1415*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1416*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1417*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1418*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1419*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1420*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1421*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1422*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1423*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1424*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1425*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1426*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>70</integer>
1427*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>6</integer>
1428*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1429*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1430*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1431*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1432*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1433*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1434*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>70</integer>
1435*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
1436*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1437*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1438*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1439*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>70</integer>
1440*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
1441*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1442*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1443*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1444*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1445*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1446*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1447*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1448*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1449*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1450*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1451*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1452*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1453*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1454*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1455*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1456*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>test_block_ret</string>
1457*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>5</string>
1458*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1459*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1460*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>70</integer>
1461*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>6</integer>
1462*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1463*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1464*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1465*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1466*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
1467*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
1468*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1469*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1470*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1471*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1472*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1473*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1474*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1475*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1476*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>74</integer>
1477*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1478*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1479*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1480*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1481*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>74</integer>
1482*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>9</integer>
1483*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1484*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1485*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1486*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1487*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1488*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1489*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>75</integer>
1490*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1491*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1492*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1493*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1494*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>75</integer>
1495*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1496*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1497*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1498*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1499*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1500*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1501*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1502*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1503*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1504*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1505*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1506*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>75</integer>
1507*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1508*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1509*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1510*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1511*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1512*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1513*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1514*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>75</integer>
1515*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1516*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1517*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1518*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1519*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>77</integer>
1520*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1521*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1522*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1523*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1524*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1525*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1526*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1527*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
1528*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1529*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
1530*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1531*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1532*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1533*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1534*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1535*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>75</integer>
1536*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1537*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1538*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1539*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1540*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1541*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block_blockvar&apos;</string>
1542*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1543*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block_blockvar&apos;</string>
1544*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1545*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1546*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1547*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1548*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1549*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1550*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1551*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1552*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1553*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>75</integer>
1554*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1555*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1556*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1557*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1558*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>75</integer>
1559*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1560*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1561*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1562*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1563*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1564*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1565*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1566*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1567*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1568*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1569*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1570*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1571*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>76</integer>
1572*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1573*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1574*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1575*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1576*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1577*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1578*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1579*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1580*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1581*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1582*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1583*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>76</integer>
1584*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>5</integer>
1585*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1586*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1587*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1588*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1589*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1590*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1591*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>76</integer>
1592*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1593*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1594*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1595*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1596*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>76</integer>
1597*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>9</integer>
1598*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1599*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1600*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1601*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1602*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1603*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1604*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Null pointer value stored to &apos;p&apos;</string>
1605*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1606*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Null pointer value stored to &apos;p&apos;</string>
1607*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1608*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1609*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1610*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1611*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1612*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>75</integer>
1613*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1614*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1615*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1616*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1617*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1618*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1619*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1620*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>75</integer>
1621*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1622*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1623*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1624*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1625*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>77</integer>
1626*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1627*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1628*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1629*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1630*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1631*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1632*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1633*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning to caller</string>
1634*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1635*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning to caller</string>
1636*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1637*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1638*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1639*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1640*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1641*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1642*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1643*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1644*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1645*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>75</integer>
1646*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1647*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1648*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1649*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1650*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>75</integer>
1651*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1652*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1653*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1654*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1655*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1656*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1657*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1658*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>78</integer>
1659*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1660*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1661*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1662*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1663*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>78</integer>
1664*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1665*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1666*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1667*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1668*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1669*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1670*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1671*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1672*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1673*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1674*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1675*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>78</integer>
1676*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>6</integer>
1677*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1678*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1679*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1680*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1681*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1682*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1683*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>78</integer>
1684*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
1685*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1686*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1687*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1688*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>78</integer>
1689*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
1690*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1691*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1692*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1693*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1694*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1695*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1696*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1697*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1698*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1699*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1700*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1701*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1702*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1703*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1704*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1705*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>test_block_blockvar</string>
1706*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>5</string>
1707*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1708*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1709*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>78</integer>
1710*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>6</integer>
1711*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1712*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1713*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1714*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1715*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>path</key>
1716*f4a2713aSLionel Sambuc // CHECK-NEXT:    <array>
1717*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1718*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1719*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1720*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1721*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1722*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1723*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1724*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1725*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>82</integer>
1726*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1727*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1728*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1729*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1730*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>82</integer>
1731*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1732*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1733*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1734*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1735*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1736*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1737*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1738*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1739*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1740*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1741*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1742*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1743*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1744*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1745*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1746*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1747*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1748*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1749*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1750*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1751*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1752*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1753*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1754*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1755*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>83</integer>
1756*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1757*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1758*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1759*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1760*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1761*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1762*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1763*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>83</integer>
1764*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1765*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1766*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1767*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1768*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>85</integer>
1769*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>7</integer>
1770*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1771*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1772*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1773*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1774*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1775*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1776*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
1777*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1778*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Calling anonymous block</string>
1779*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1780*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1781*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1782*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1783*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1784*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>83</integer>
1785*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1786*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1787*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1788*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1789*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1790*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block_arg&apos;</string>
1791*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1792*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Entered call from &apos;test_block_arg&apos;</string>
1793*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1794*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1795*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1796*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1797*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1798*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1799*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1800*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1801*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1802*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1803*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1804*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1805*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1806*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1807*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1808*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1809*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1810*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1811*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1812*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1813*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1814*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1815*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>84</integer>
1816*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1817*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1818*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1819*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1820*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>84</integer>
1821*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>5</integer>
1822*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1823*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1824*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1825*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1826*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1827*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1828*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1829*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1830*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1831*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1832*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>84</integer>
1833*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>5</integer>
1834*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1835*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1836*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1837*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1838*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1839*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1840*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>84</integer>
1841*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>5</integer>
1842*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1843*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1844*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1845*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>84</integer>
1846*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>10</integer>
1847*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1848*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1849*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1850*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1851*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>1</integer>
1852*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1853*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Null pointer value stored to &apos;p&apos;</string>
1854*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1855*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Null pointer value stored to &apos;p&apos;</string>
1856*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1857*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1858*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1859*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1860*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1861*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>83</integer>
1862*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>3</integer>
1863*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1864*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1865*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1866*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1867*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1868*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1869*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>83</integer>
1870*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>3</integer>
1871*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1872*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1873*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1874*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>85</integer>
1875*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>7</integer>
1876*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1877*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1878*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1879*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1880*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1881*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1882*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning to caller</string>
1883*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1884*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Returning to caller</string>
1885*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1886*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1887*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>control</string>
1888*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>edges</key>
1889*f4a2713aSLionel Sambuc // CHECK-NEXT:       <array>
1890*f4a2713aSLionel Sambuc // CHECK-NEXT:        <dict>
1891*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>start</key>
1892*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1893*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1894*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1895*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1896*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1897*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1898*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1899*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>83</integer>
1900*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>3</integer>
1901*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1902*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1903*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1904*f4a2713aSLionel Sambuc // CHECK-NEXT:         <key>end</key>
1905*f4a2713aSLionel Sambuc // CHECK-NEXT:          <array>
1906*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1907*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>86</integer>
1908*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1909*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1910*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1911*f4a2713aSLionel Sambuc // CHECK-NEXT:           <dict>
1912*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>line</key><integer>86</integer>
1913*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>col</key><integer>6</integer>
1914*f4a2713aSLionel Sambuc // CHECK-NEXT:            <key>file</key><integer>0</integer>
1915*f4a2713aSLionel Sambuc // CHECK-NEXT:           </dict>
1916*f4a2713aSLionel Sambuc // CHECK-NEXT:          </array>
1917*f4a2713aSLionel Sambuc // CHECK-NEXT:        </dict>
1918*f4a2713aSLionel Sambuc // CHECK-NEXT:       </array>
1919*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1920*f4a2713aSLionel Sambuc // CHECK-NEXT:     <dict>
1921*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>kind</key><string>event</string>
1922*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>location</key>
1923*f4a2713aSLionel Sambuc // CHECK-NEXT:      <dict>
1924*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>line</key><integer>86</integer>
1925*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>col</key><integer>6</integer>
1926*f4a2713aSLionel Sambuc // CHECK-NEXT:       <key>file</key><integer>0</integer>
1927*f4a2713aSLionel Sambuc // CHECK-NEXT:      </dict>
1928*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>ranges</key>
1929*f4a2713aSLionel Sambuc // CHECK-NEXT:      <array>
1930*f4a2713aSLionel Sambuc // CHECK-NEXT:        <array>
1931*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1932*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>86</integer>
1933*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
1934*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1935*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1936*f4a2713aSLionel Sambuc // CHECK-NEXT:         <dict>
1937*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>line</key><integer>86</integer>
1938*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>col</key><integer>4</integer>
1939*f4a2713aSLionel Sambuc // CHECK-NEXT:          <key>file</key><integer>0</integer>
1940*f4a2713aSLionel Sambuc // CHECK-NEXT:         </dict>
1941*f4a2713aSLionel Sambuc // CHECK-NEXT:        </array>
1942*f4a2713aSLionel Sambuc // CHECK-NEXT:      </array>
1943*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>depth</key><integer>0</integer>
1944*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>extended_message</key>
1945*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1946*f4a2713aSLionel Sambuc // CHECK-NEXT:      <key>message</key>
1947*f4a2713aSLionel Sambuc // CHECK-NEXT:      <string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1948*f4a2713aSLionel Sambuc // CHECK-NEXT:     </dict>
1949*f4a2713aSLionel Sambuc // CHECK-NEXT:    </array>
1950*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>description</key><string>Dereference of null pointer (loaded from variable &apos;p&apos;)</string>
1951*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>category</key><string>Logic error</string>
1952*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>type</key><string>Dereference of null pointer</string>
1953*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context_kind</key><string>function</string>
1954*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_context</key><string>test_block_arg</string>
1955*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>issue_hash</key><string>5</string>
1956*f4a2713aSLionel Sambuc // CHECK-NEXT:   <key>location</key>
1957*f4a2713aSLionel Sambuc // CHECK-NEXT:   <dict>
1958*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>line</key><integer>86</integer>
1959*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>col</key><integer>6</integer>
1960*f4a2713aSLionel Sambuc // CHECK-NEXT:    <key>file</key><integer>0</integer>
1961*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1962*f4a2713aSLionel Sambuc // CHECK-NEXT:   </dict>
1963*f4a2713aSLionel Sambuc // CHECK-NEXT:  </array>
1964