Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / reallocarray-overflow.cpp
blob245a5b47ab246b366dd32d2252bb8aab28de8c3c
1 // RUN: %clangxx -O0 %s -o %t
2 // RUN: %env_tool_opts=allocator_may_return_null=0 not %run %t 2>&1 | FileCheck %s
3 // RUN: %env_tool_opts=allocator_may_return_null=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NULL
5 // REQUIRES: stable-runtime && !ubsan && !darwin
7 #include <stdio.h>
9 extern "C" void *reallocarray(void *, size_t, size_t);
11 int main() {
12 void *p = reallocarray(nullptr, -1, 1000);
13 // CHECK: {{ERROR: .*Sanitizer: reallocarray parameters overflow: count \* size \(.* \* 1000\) cannot be represented in type size_t}}
15 printf("reallocarray returned: %zu\n", (size_t)p);
16 // CHECK-NULL: reallocarray returned: 0
18 return 0;