From 21ad3fd3c5de63733be09da46878db0b074dfd3a Mon Sep 17 00:00:00 2001 From: Kuba Mracek Date: Mon, 10 Jul 2017 17:11:52 +0000 Subject: [PATCH] Fix-up for r307537: We need to #include stdint.h to get int32_t. llvm-svn: 307557 --- compiler-rt/test/tsan/Darwin/osspinlock-norace.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/test/tsan/Darwin/osspinlock-norace.cc b/compiler-rt/test/tsan/Darwin/osspinlock-norace.cc index 837da3b179f7..5de02c225f0b 100644 --- a/compiler-rt/test/tsan/Darwin/osspinlock-norace.cc +++ b/compiler-rt/test/tsan/Darwin/osspinlock-norace.cc @@ -1,5 +1,6 @@ // RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s #include +#include #include typedef int32_t OSSpinLock;