diff options
author | Kuba Mracek <mracek@apple.com> | 2016-12-19 18:09:18 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2016-12-19 18:09:18 +0000 |
commit | 7384738362ea4444731c7969af8aad35fc6d63dc (patch) | |
tree | 107392ed302b107e722d4cd6712e713414ca2787 | |
parent | 866310fcbc07da81120c225e45d24b1da32b3a01 (diff) | |
download | bcm5719-llvm-7384738362ea4444731c7969af8aad35fc6d63dc.tar.gz bcm5719-llvm-7384738362ea4444731c7969af8aad35fc6d63dc.zip |
Another fix-up for r290119: Include stdint.h so we have uint64_t on Linux.
llvm-svn: 290124
-rw-r--r-- | compiler-rt/test/tsan/debug_alloc_stack.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/tsan/debug_alloc_stack.cc b/compiler-rt/test/tsan/debug_alloc_stack.cc index a94889b032e..8c205cd47af 100644 --- a/compiler-rt/test/tsan/debug_alloc_stack.cc +++ b/compiler-rt/test/tsan/debug_alloc_stack.cc @@ -3,6 +3,7 @@ #include "test.h" #include <pthread.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> |