You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
359 B
24 lines
359 B
// RUN: %clangxx_asan -O0 %s -o %t
|
|
// RUN: not %run %t 2>&1 | FileCheck %s
|
|
|
|
struct A {
|
|
int a[8];
|
|
};
|
|
|
|
int bar(A *a) {
|
|
int *volatile ptr = &a->a[0];
|
|
return *(ptr - 1);
|
|
}
|
|
|
|
void foo(A a) {
|
|
bar(&a);
|
|
}
|
|
|
|
int main() {
|
|
foo(A());
|
|
}
|
|
|
|
// CHECK: ERROR: AddressSanitizer: stack-buffer-underflow
|
|
// CHECK: READ of size 4 at
|
|
// CHECK: is located in stack of thread
|