summaryrefslogtreecommitdiff
path: root/lib/asan/lit_tests/TestCases/assign_large_valloc_to_global.cc
blob: 5275dd16d2336ae478bd40aa846426a97a1f9f0c (plain)
1
2
3
4
5
// Make sure we don't report a leak nor hang.
// RUN: %clangxx_asan -O3 %s -o %t && %t
#include <malloc.h>
int *p = (int*)valloc(1 << 20);
int main() { }