Nico Weber 74989aff53 compiler-rt: Rename cc files below test/sanitizer_common to cpp
See r367803 and similar other changes.

llvm-svn: 367863
2019-08-05 13:57:03 +00:00

17 lines
303 B
C++

// RUN: %clangxx -O0 %s -o %t && %run %t
// UNSUPPORTED: lsan,ubsan
#include <assert.h>
#include <sys/time.h>
#include <sys/resource.h>
int main() {
struct rlimit lim_core;
getrlimit(RLIMIT_CORE, &lim_core);
void *p;
if (sizeof(p) == 8) {
assert(0 == lim_core.rlim_cur);
}
return 0;
}