blob: 0e56ca10c39c25b2d1b4713abc05048709142011 [file] [log] [blame]
// RUN: %clangxx_asan -o %t %s
// RUN: not %run %t 2>&1 | FileCheck %s
#include <sanitizer/allocator_interface.h>
int g_i = 42;
int main() {
// CHECK: AddressSanitizer: attempting to call __sanitizer_get_allocated_size() for pointer which is not owned
// CHECK-NOT: ASAN:DEADLYSIGNAL
// CHECK: SUMMARY: AddressSanitizer: bad-__sanitizer_get_allocated_size
// CHECK-NOT: ASAN:DEADLYSIGNAL
return (int)__sanitizer_get_allocated_size(&g_i);
}