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.
20 lines
484 B
20 lines
484 B
// If we have LLD, see that things more or less work.
|
|
//
|
|
// REQUIRES: lld-available
|
|
//
|
|
// RUN: %clangxx_asan -O2 %s -o %t.exe -g -gcodeview -fuse-ld=lld -Wl,-debug
|
|
// RUN: not %run %t.exe 2>&1 | FileCheck %s
|
|
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
char *x = (char*)malloc(10 * sizeof(char));
|
|
free(x);
|
|
return x[5];
|
|
// CHECK: heap-use-after-free
|
|
// CHECK: free
|
|
// CHECK: main{{.*}}fuse-lld.cpp:[[@LINE-4]]:3
|
|
// CHECK: malloc
|
|
// CHECK: main{{.*}}fuse-lld.cpp:[[@LINE-7]]:20
|
|
}
|