1*f4a2713aSLionel Sambuc // RUN: %clang --analyze %s -Xanalyzer -analyzer-output=text -Xclang -verify 2*f4a2713aSLionel Sambuc // RUN: %clang --analyze %s -Xanalyzer -analyzer-config -Xanalyzer path-diagnostics-alternate=false -o %t 3*f4a2713aSLionel Sambuc // RUN: FileCheck --input-file=%t %s 4*f4a2713aSLionel Sambuc testCondOp(int * p)5*f4a2713aSLionel Sambucvoid testCondOp(int *p) { 6*f4a2713aSLionel Sambuc int *x = p ? p : p; 7*f4a2713aSLionel Sambuc // expected-note@-1 {{Assuming 'p' is null}} 8*f4a2713aSLionel Sambuc // expected-note@-2 {{'?' condition is false}} 9*f4a2713aSLionel Sambuc // expected-note@-3 {{'x' initialized to a null pointer value}} 10*f4a2713aSLionel Sambuc *x = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'x')}} 11*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer (loaded from variable 'x')}} 12*f4a2713aSLionel Sambuc } 13*f4a2713aSLionel Sambuc testCondProblem(int * p)14*f4a2713aSLionel Sambucvoid testCondProblem(int *p) { 15*f4a2713aSLionel Sambuc if (p) return; 16*f4a2713aSLionel Sambuc // expected-note@-1 {{Assuming 'p' is null}} 17*f4a2713aSLionel Sambuc // expected-note@-2 {{Taking false branch}} 18*f4a2713aSLionel Sambuc 19*f4a2713aSLionel Sambuc int x = *p ? 0 : 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} 20*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} 21*f4a2713aSLionel Sambuc (void)x; 22*f4a2713aSLionel Sambuc } 23*f4a2713aSLionel Sambuc testLHSProblem(int * p)24*f4a2713aSLionel Sambucvoid testLHSProblem(int *p) { 25*f4a2713aSLionel Sambuc int x = !p ? *p : 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} 26*f4a2713aSLionel Sambuc // expected-note@-1 {{Assuming 'p' is null}} 27*f4a2713aSLionel Sambuc // expected-note@-2 {{'?' condition is true}} 28*f4a2713aSLionel Sambuc // expected-note@-3 {{Dereference of null pointer (loaded from variable 'p')}} 29*f4a2713aSLionel Sambuc (void)x; 30*f4a2713aSLionel Sambuc } 31*f4a2713aSLionel Sambuc testRHSProblem(int * p)32*f4a2713aSLionel Sambucvoid testRHSProblem(int *p) { 33*f4a2713aSLionel Sambuc int x = p ? 1 : *p; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} 34*f4a2713aSLionel Sambuc // expected-note@-1 {{Assuming 'p' is null}} 35*f4a2713aSLionel Sambuc // expected-note@-2 {{'?' condition is false}} 36*f4a2713aSLionel Sambuc // expected-note@-3 {{Dereference of null pointer (loaded from variable 'p')}} 37*f4a2713aSLionel Sambuc (void)x; 38*f4a2713aSLionel Sambuc } 39*f4a2713aSLionel Sambuc testBinaryCondOp(int * p)40*f4a2713aSLionel Sambucvoid testBinaryCondOp(int *p) { 41*f4a2713aSLionel Sambuc int *x = p ?: p; 42*f4a2713aSLionel Sambuc // expected-note@-1 {{'?' condition is false}} 43*f4a2713aSLionel Sambuc // expected-note@-2 {{'x' initialized to a null pointer value}} 44*f4a2713aSLionel Sambuc *x = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'x')}} 45*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer (loaded from variable 'x')}} 46*f4a2713aSLionel Sambuc } 47*f4a2713aSLionel Sambuc testBinaryLHSProblem(int * p)48*f4a2713aSLionel Sambucvoid testBinaryLHSProblem(int *p) { 49*f4a2713aSLionel Sambuc if (p) return; 50*f4a2713aSLionel Sambuc // expected-note@-1 {{Assuming 'p' is null}} 51*f4a2713aSLionel Sambuc // expected-note@-2 {{Taking false branch}} 52*f4a2713aSLionel Sambuc 53*f4a2713aSLionel Sambuc int x = *p ?: 1; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}} 54*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer (loaded from variable 'p')}} 55*f4a2713aSLionel Sambuc (void)x; 56*f4a2713aSLionel Sambuc } 57*f4a2713aSLionel Sambuc testDiagnosableBranch(int a)58*f4a2713aSLionel Sambucvoid testDiagnosableBranch(int a) { 59*f4a2713aSLionel Sambuc if (a) { 60*f4a2713aSLionel Sambuc // expected-note@-1 {{Assuming 'a' is not equal to 0}} 61*f4a2713aSLionel Sambuc // expected-note@-2 {{Taking true branch}} 62*f4a2713aSLionel Sambuc *(volatile int *)0 = 1; // expected-warning{{Dereference of null pointer}} 63*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer}} 64*f4a2713aSLionel Sambuc } 65*f4a2713aSLionel Sambuc } 66*f4a2713aSLionel Sambuc testNonDiagnosableBranchLogical(int a,int b)67*f4a2713aSLionel Sambucvoid testNonDiagnosableBranchLogical(int a, int b) { 68*f4a2713aSLionel Sambuc if (a && b) { 69*f4a2713aSLionel Sambuc // expected-note@-1 {{Left side of '&&' is true}} 70*f4a2713aSLionel Sambuc // expected-note@-2 {{Taking true branch}} 71*f4a2713aSLionel Sambuc *(volatile int *)0 = 1; // expected-warning{{Dereference of null pointer}} 72*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer}} 73*f4a2713aSLionel Sambuc } 74*f4a2713aSLionel Sambuc } 75*f4a2713aSLionel Sambuc testNonDiagnosableBranchArithmetic(int a,int b)76*f4a2713aSLionel Sambucvoid testNonDiagnosableBranchArithmetic(int a, int b) { 77*f4a2713aSLionel Sambuc if (a - b) { 78*f4a2713aSLionel Sambuc // expected-note@-1 {{Taking true branch}} 79*f4a2713aSLionel Sambuc *(volatile int *)0 = 1; // expected-warning{{Dereference of null pointer}} 80*f4a2713aSLionel Sambuc // expected-note@-1 {{Dereference of null pointer}} 81*f4a2713aSLionel Sambuc } 82*f4a2713aSLionel Sambuc } 83*f4a2713aSLionel Sambuc 84*f4a2713aSLionel Sambuc // CHECK: <key>diagnostics</key> 85*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 86*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 87*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 88*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 89*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 90*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 91*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 92*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 93*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 94*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 95*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 96*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 97*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 98*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 99*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 100*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 101*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 102*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 103*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 104*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 105*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 106*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 107*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 108*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 109*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 110*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 111*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 112*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 113*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 114*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 115*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 116*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 117*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 118*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 119*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 120*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 121*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 122*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 123*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 124*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 125*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 126*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 127*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 128*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 129*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 130*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 131*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 132*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 133*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 134*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 135*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 136*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 137*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 138*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 139*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 140*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 141*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 142*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 143*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 144*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 145*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 146*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 147*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 148*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 149*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 150*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 151*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 152*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 153*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 154*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 155*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 156*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 157*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 158*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 159*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 160*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 161*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 162*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 163*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 164*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 165*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 166*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 167*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 168*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 169*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 170*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 171*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 172*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 173*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 174*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 175*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 176*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 177*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 178*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 179*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 180*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 181*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 182*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 183*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 184*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 185*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 186*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 187*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 188*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 189*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 190*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 191*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 192*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 193*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 194*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 195*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 196*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 197*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 198*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 199*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 200*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 201*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 202*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 203*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 204*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 205*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 206*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 207*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 208*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 209*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 210*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 211*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 212*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 213*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 214*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 215*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 216*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 217*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 218*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 219*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 220*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 221*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 222*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 223*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 224*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 225*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 226*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 227*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 228*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 229*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 230*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 231*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 232*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 233*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 234*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 235*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 236*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 237*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 238*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 239*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 240*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 241*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 242*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 243*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 244*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 245*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>'x' initialized to a null pointer value</string> 246*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 247*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>'x' initialized to a null pointer value</string> 248*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 249*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 250*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 251*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 252*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 253*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 254*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 255*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 256*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 257*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 258*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 259*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 260*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 261*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 262*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>6</integer> 263*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 264*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 265*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 266*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 267*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 268*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 269*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 270*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>10</integer> 271*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 272*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 273*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 274*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 275*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>10</integer> 276*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 277*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 278*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 279*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 280*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 281*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 282*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 283*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 284*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 285*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 286*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 287*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>10</integer> 288*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 289*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 290*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 291*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 292*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 293*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 294*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 295*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>10</integer> 296*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 297*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 298*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 299*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 300*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>10</integer> 301*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 302*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 303*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 304*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 305*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 306*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 307*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 308*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'x')</string> 309*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 310*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'x')</string> 311*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 312*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 313*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'x')</string> 314*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 315*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 316*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 317*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testCondOp</string> 318*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>5</string> 319*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 320*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 321*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>10</integer> 322*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 323*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 324*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 325*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 326*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 327*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 328*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 329*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 330*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 331*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 332*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 333*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 334*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 335*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 336*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 337*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 338*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 339*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 340*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 341*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 342*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 343*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 344*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 345*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 346*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 347*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 348*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 349*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 350*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 351*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 352*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 353*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 354*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 355*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 356*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 357*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 358*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 359*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 360*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 361*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 362*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 363*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 364*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 365*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 366*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 367*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 368*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 369*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 370*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 371*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 372*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 373*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 374*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 375*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 376*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 377*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 378*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 379*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 380*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 381*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 382*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 383*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 384*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 385*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 386*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 387*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 388*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 389*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 390*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 391*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 392*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 393*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 394*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 395*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 396*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 397*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 398*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 399*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 400*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 401*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 402*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 403*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 404*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 405*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>15</integer> 406*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 407*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 408*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 409*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 410*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 411*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 412*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 413*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 414*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 415*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 416*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 417*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 418*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 419*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 420*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 421*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 422*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 423*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 424*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 425*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 426*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 427*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 428*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 429*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 430*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 431*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 432*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 433*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 434*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 435*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 436*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 437*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 439*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 440*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 441*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 442*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 443*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 444*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 445*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 446*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 447*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 448*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 449*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 450*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 451*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 452*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 453*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 454*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 455*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 456*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'p')</string> 457*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 458*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 459*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 460*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testCondProblem</string> 461*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>5</string> 462*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 463*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 464*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>19</integer> 465*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 466*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 467*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 468*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 469*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 470*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 471*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 472*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 473*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 474*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 475*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 476*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 477*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 478*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 479*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 480*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 481*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 482*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 483*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 484*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 485*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 486*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 487*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 488*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 489*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 490*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 491*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 492*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 493*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 494*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 495*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 496*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 497*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 498*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 499*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 500*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 501*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 502*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 503*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 504*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 505*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 506*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 507*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 508*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 509*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 510*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 511*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 512*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 513*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 514*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 515*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 516*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 517*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 518*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 519*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 520*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 521*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 522*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 524*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 525*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 526*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 527*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 528*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 529*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 530*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 531*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 532*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 533*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 534*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 535*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 536*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 537*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 538*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 539*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 540*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 541*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 542*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 543*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 544*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 545*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 546*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 547*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 548*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 549*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 550*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 551*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 552*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 553*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 554*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 555*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 556*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 557*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>16</integer> 558*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 559*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 560*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 561*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 562*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>16</integer> 563*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 564*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 565*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 566*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 567*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 568*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 569*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 570*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 571*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 572*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 573*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 574*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>16</integer> 575*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 576*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 577*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 578*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 579*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 580*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 581*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 582*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 583*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 584*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 585*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 586*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 587*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 588*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 589*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 590*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 591*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 592*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 593*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 594*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 595*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 596*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 597*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 598*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 599*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'p')</string> 600*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 601*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 602*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 603*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testLHSProblem</string> 604*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 605*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 606*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 607*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>25</integer> 608*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>16</integer> 609*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 610*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 611*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 612*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 613*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 614*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 615*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 616*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 617*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 618*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 619*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 620*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 621*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 622*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 623*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 624*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 625*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 626*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 627*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 628*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 629*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 630*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 631*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 632*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 633*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 634*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 635*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 636*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 637*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 638*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 639*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 640*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 641*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 642*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 643*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 644*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 645*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 646*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 647*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 648*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 649*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 650*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 651*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 652*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 653*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 654*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 655*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 656*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 657*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 658*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 659*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 660*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 661*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 662*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 663*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 664*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 665*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 666*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 667*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 668*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 669*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 670*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 671*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 672*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 673*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 674*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 675*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 676*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 677*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 678*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 679*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 680*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 681*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 682*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 683*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 684*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 685*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 686*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 687*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 688*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 689*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 690*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 691*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 692*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 693*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 694*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 695*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 696*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 697*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 698*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 699*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 700*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 701*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 702*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 703*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 704*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 705*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 706*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 707*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 708*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 709*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 710*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 711*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 712*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 713*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 714*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 715*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 716*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 717*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 718*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 719*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 720*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 721*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 722*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 723*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 724*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 725*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 726*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 727*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 728*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 729*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 730*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>20</integer> 731*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 732*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 733*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 734*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 735*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 736*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 737*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 738*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 739*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 740*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 741*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 742*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'p')</string> 743*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 744*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 745*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 746*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testRHSProblem</string> 747*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>1</string> 748*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 749*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 750*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>33</integer> 751*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>19</integer> 752*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 753*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 754*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 755*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 756*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 757*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 758*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 759*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 760*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 761*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 762*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 763*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 764*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 765*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 766*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 767*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 768*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 769*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 770*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 771*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 772*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 773*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 774*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 775*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 776*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 777*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 778*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 779*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 780*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 781*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 782*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 783*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 784*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 785*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 786*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 787*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 788*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 789*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 790*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 791*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 792*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 793*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 794*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 795*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 796*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 797*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 798*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 799*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 800*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 801*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 802*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 803*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 804*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 805*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 806*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 807*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 808*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 809*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 810*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 811*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 812*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 813*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 814*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 815*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 816*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 817*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 818*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 819*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 820*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 821*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 822*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 823*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 824*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 825*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 826*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 827*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 828*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 829*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 830*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 831*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 832*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 833*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 834*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 835*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 836*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 837*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 838*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 839*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 840*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>17</integer> 841*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 842*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 843*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 844*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 845*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 846*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 847*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 848*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 849*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 850*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 851*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 852*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 853*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 854*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 855*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 856*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 857*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 858*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 859*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 860*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 861*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 862*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 863*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 864*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 865*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 866*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 867*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 868*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 869*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 870*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 871*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 872*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 873*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 874*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 875*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 876*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 877*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 878*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>8</integer> 879*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 880*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 881*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 882*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 883*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 884*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 885*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>'x' initialized to a null pointer value</string> 886*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 887*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>'x' initialized to a null pointer value</string> 888*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 889*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 890*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 891*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 892*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 893*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 894*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 895*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 896*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 897*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 898*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 899*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 900*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 901*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 902*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>41</integer> 903*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 904*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 905*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 906*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 907*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 908*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 909*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 910*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 911*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 912*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 913*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 914*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 915*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 916*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 917*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 918*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 919*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 920*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 921*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 922*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 923*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 924*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 925*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 926*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 927*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 928*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 929*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 930*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 931*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 932*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 933*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 934*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 935*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 936*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 937*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 938*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 939*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 940*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 941*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 942*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 943*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 944*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 945*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 946*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 947*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 948*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'x')</string> 949*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 950*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'x')</string> 951*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 952*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 953*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'x')</string> 954*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 955*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 956*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 957*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testBinaryCondOp</string> 958*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>4</string> 959*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 960*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 961*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>44</integer> 962*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>6</integer> 963*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 964*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 965*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 966*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 967*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 968*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 969*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 970*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 971*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 972*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 973*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 974*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 975*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 976*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 977*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 978*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 979*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 980*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 981*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 982*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 983*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 984*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 985*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 986*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 987*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 988*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 989*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 990*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 991*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</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>49</integer> 996*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</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: </dict> 1001*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1002*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1003*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1004*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1005*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1006*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1007*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 1008*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1009*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1010*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1011*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1012*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1013*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1014*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1015*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 1016*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1017*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1018*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1019*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1020*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 1021*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1022*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1023*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1024*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1025*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1026*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1027*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1028*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 1029*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1030*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'p' is null</string> 1031*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1032*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1033*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1034*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1035*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1036*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1037*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1038*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1039*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1040*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 1041*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1042*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1043*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1044*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1045*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>49</integer> 1046*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1047*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1048*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1049*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1050*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1051*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1052*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1053*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1054*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1055*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1056*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1057*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1058*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1059*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1060*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1061*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1062*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1063*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1064*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1065*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1066*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1067*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1068*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1069*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1070*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1071*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1072*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1073*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1074*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1075*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1076*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1077*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1078*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1079*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1080*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1081*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1082*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1083*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1084*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1085*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1086*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1087*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1088*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1089*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1090*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1091*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 1092*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1093*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer (loaded from variable 'p')</string> 1094*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1095*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1096*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer (loaded from variable 'p')</string> 1097*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 1098*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 1099*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 1100*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testBinaryLHSProblem</string> 1101*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>5</string> 1102*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1103*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1104*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>53</integer> 1105*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>11</integer> 1106*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1107*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1108*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1109*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1110*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 1111*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1112*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1113*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1114*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1115*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1116*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1117*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1118*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1119*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1120*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1121*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1122*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1123*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1124*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1125*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1126*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1127*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1128*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1129*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1130*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1131*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1132*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1133*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1134*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1135*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1136*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1137*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1138*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1139*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1140*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1141*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1142*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1143*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1144*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1145*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1146*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1147*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1148*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1149*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1150*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1151*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1152*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1153*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1154*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1155*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1156*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1157*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1158*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1159*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1160*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1161*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1162*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1163*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1164*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1165*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1166*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1167*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1168*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1169*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1170*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1171*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'a' is not equal to 0</string> 1172*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1173*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Assuming 'a' is not equal to 0</string> 1174*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1175*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1176*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1177*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1178*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1179*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1180*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1181*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1182*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1183*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1184*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1185*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1186*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1187*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1188*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>59</integer> 1189*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1190*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1191*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1192*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1193*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1194*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1195*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1196*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1197*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1198*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1199*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1200*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1201*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1202*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1203*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1204*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1205*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1206*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1207*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1208*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1209*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1210*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1211*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1212*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1213*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1214*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1215*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1216*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1217*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1218*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1219*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1220*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1221*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1222*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1223*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1224*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1225*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1226*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1227*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1228*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1229*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1230*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1231*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1232*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1233*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1234*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1235*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1236*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1237*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1238*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1239*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1240*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1241*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1242*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1243*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1244*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1245*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1246*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1247*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1248*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1249*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1250*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1251*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1252*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1253*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1254*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1255*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1256*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1257*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1258*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1259*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1260*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1261*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 1262*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1263*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1264*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1265*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1266*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1267*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1268*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer</string> 1269*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1270*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer</string> 1271*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1272*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1273*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer</string> 1274*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 1275*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 1276*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 1277*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testDiagnosableBranch</string> 1278*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>4</string> 1279*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1280*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1281*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>62</integer> 1282*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1283*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1284*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1285*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1286*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1287*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 1288*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1289*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1290*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1291*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1292*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1293*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1294*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1295*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1296*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1297*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1298*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1299*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1300*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1301*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1302*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1303*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1304*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1305*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1306*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1307*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1308*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1309*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1310*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1311*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1312*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1313*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1314*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1315*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1316*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1317*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1318*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1319*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1320*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1321*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1322*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1323*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1324*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1325*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1326*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1327*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1328*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1329*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1330*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1331*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1332*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1333*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1334*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1335*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1336*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1337*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>7</integer> 1338*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1339*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1340*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1341*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1342*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1343*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1344*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1345*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1346*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1347*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1348*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1349*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1350*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1351*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1352*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1353*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1354*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1355*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1356*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1357*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1358*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1359*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1360*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1361*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1362*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1363*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1364*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1365*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1366*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1367*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1368*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1369*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1370*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>68</integer> 1371*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>12</integer> 1372*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1373*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1374*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1375*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1376*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1377*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1378*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1379*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1380*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1381*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1382*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1383*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1384*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1385*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1386*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1387*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1388*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1389*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1390*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1391*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1392*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1393*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1394*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1395*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1396*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1397*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1398*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1399*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1400*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1401*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1402*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1403*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1404*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1405*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1406*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1407*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1408*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1409*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1410*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1411*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1412*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1413*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1414*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1415*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1416*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1417*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1418*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1419*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1420*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1421*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1422*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1423*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1424*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1425*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1426*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1427*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1428*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1429*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1430*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1431*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1432*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1433*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1434*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1435*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1436*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1437*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1438*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1439*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1440*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1441*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1442*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1443*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 1444*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1445*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1446*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1447*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1448*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1449*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1450*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer</string> 1451*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1452*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer</string> 1453*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1454*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1455*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer</string> 1456*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 1457*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 1458*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 1459*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testNonDiagnosableBranchLogical</string> 1460*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>4</string> 1461*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1462*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1463*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>71</integer> 1464*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1465*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1466*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1467*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1468*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1469*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>path</key> 1470*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1471*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1472*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1473*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1474*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1475*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1476*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1477*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1478*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1479*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>77</integer> 1480*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>3</integer> 1481*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1482*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1483*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1484*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>77</integer> 1485*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>4</integer> 1486*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1487*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1488*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1489*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1490*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1491*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1492*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1493*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1494*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1495*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1496*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1497*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1498*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1499*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1500*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1501*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1502*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1503*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1504*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1505*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1506*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>control</string> 1507*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>edges</key> 1508*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1509*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1510*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>start</key> 1511*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1512*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1513*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1514*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1515*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1516*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1517*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1518*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1519*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1520*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1521*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1522*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1523*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>end</key> 1524*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1525*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1526*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1527*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1528*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1529*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1530*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1531*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1532*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1533*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1534*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1535*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1536*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1537*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1538*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1539*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1540*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>kind</key><string>event</string> 1541*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1542*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1543*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1544*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1545*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1546*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1547*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>ranges</key> 1548*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1549*f4a2713aSLionel Sambuc // CHECK-NEXT: <array> 1550*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1551*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1552*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>5</integer> 1553*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1554*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1555*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1556*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1557*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>26</integer> 1558*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1559*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1560*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1561*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1562*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>depth</key><integer>0</integer> 1563*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>extended_message</key> 1564*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer</string> 1565*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>message</key> 1566*f4a2713aSLionel Sambuc // CHECK-NEXT: <string>Dereference of null pointer</string> 1567*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1568*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1569*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>description</key><string>Dereference of null pointer</string> 1570*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>category</key><string>Logic error</string> 1571*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>type</key><string>Dereference of null pointer</string> 1572*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context_kind</key><string>function</string> 1573*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_context</key><string>testNonDiagnosableBranchArithmetic</string> 1574*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>issue_hash</key><string>3</string> 1575*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>location</key> 1576*f4a2713aSLionel Sambuc // CHECK-NEXT: <dict> 1577*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>line</key><integer>79</integer> 1578*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>col</key><integer>24</integer> 1579*f4a2713aSLionel Sambuc // CHECK-NEXT: <key>file</key><integer>0</integer> 1580*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1581*f4a2713aSLionel Sambuc // CHECK-NEXT: </dict> 1582*f4a2713aSLionel Sambuc // CHECK-NEXT: </array> 1583