blob: 9f7f7b6f439d5b8bfaacab3a6c96a1c23bde0db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// RUN: %clangxx_asan -O0 %s -o %t -mllvm -asan-detect-invalid-pointer-pair
// RUN: %env_asan_opts=detect_invalid_pointer_pairs=1 %run %t
#include <assert.h>
#include <stdlib.h>
int foo(char *p, char *q) {
return p <= q;
}
char global[8192] = {};
char small_global[7] = {};
int main() {
// Heap allocated memory.
char *p = (char *)malloc(42);
int r = foo(p, NULL);
free(p);
p = (char *)malloc(1024);
foo(NULL, p);
free(p);
p = (char *)malloc(4096);
foo(p, NULL);
free(p);
// Global variable.
foo(&global[0], NULL);
foo(&global[1000], NULL);
p = &small_global[0];
foo(p, NULL);
// Stack variable.
char stack[10000];
foo(&stack[0], NULL);
foo(NULL, &stack[9000]);
return 0;
}
|