Home | History | Annotate | Download | only in Analysis

Lines Matching defs:x1

1286   int *x1 = malloc(8);
1288 clang_analyzer_eval(x1 == x2); // expected-warning{{FALSE}}
1289 free(x1);
1295 int *x1 = malloc(8);
1297 int *x4 = x1;
1300 free(x1);
1307 int *x1 = malloc(8);
1308 int *x4 = x1;
1309 if (x1 == x4) {
1310 free(x1);