[compiler-rt] r300484 - [tsan] Add missing include for uint64_t in test.

Benjamin Kramer via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 17 12:55:13 PDT 2017


Author: d0k
Date: Mon Apr 17 14:55:12 2017
New Revision: 300484

URL: http://llvm.org/viewvc/llvm-project?rev=300484&view=rev
Log:
[tsan] Add missing include for uint64_t in test.

Modified:
    compiler-rt/trunk/test/tsan/debugging.cc

Modified: compiler-rt/trunk/test/tsan/debugging.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/debugging.cc?rev=300484&r1=300483&r2=300484&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/debugging.cc (original)
+++ compiler-rt/trunk/test/tsan/debugging.cc Mon Apr 17 14:55:12 2017
@@ -2,6 +2,7 @@
 // RUN: %deflake %run %t 2>&1 | FileCheck %s
 
 #include <pthread.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>




More information about the llvm-commits mailing list