diff options
| author | Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> | 2016-09-13 14:42:40 +0000 |
|---|---|---|
| committer | Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de> | 2016-09-13 14:42:40 +0000 |
| commit | 161c7f866114aea9901b9c9665f0af4786a62efa (patch) | |
| tree | a7e11a077fb4d6d6b76636e68e48cd15e2deb79e | |
| parent | 2e99e0ff633c30fc2deea2a4af67e946a2c17db1 (diff) | |
| download | bcm5719-llvm-161c7f866114aea9901b9c9665f0af4786a62efa.tar.gz bcm5719-llvm-161c7f866114aea9901b9c9665f0af4786a62efa.zip | |
[asan] Add missing include for rand()
llvm-svn: 281342
| -rw-r--r-- | compiler-rt/test/asan/TestCases/Linux/release_to_os_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Linux/release_to_os_test.cc b/compiler-rt/test/asan/TestCases/Linux/release_to_os_test.cc index a5303fbe2ec..24924a233d7 100644 --- a/compiler-rt/test/asan/TestCases/Linux/release_to_os_test.cc +++ b/compiler-rt/test/asan/TestCases/Linux/release_to_os_test.cc @@ -6,6 +6,7 @@ // RUN: %env_asan_opts=allocator_release_to_os=0 %run %t 2>&1 | FileCheck %s --check-prefix=NO_RELEASE // // REQUIRES: x86_64-target-arch +#include <stdlib.h> #include <stdio.h> #include <algorithm> #include <stdint.h> |

