[compiler-rt] r299089 - Fixup for r299085: Include stdint.h in scribble.cc to make uintptr_t available.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 30 10:01:35 PDT 2017


Author: kuba.brecka
Date: Thu Mar 30 12:01:35 2017
New Revision: 299089

URL: http://llvm.org/viewvc/llvm-project?rev=299089&view=rev
Log:
Fixup for r299085: Include stdint.h in scribble.cc to make uintptr_t available.


Modified:
    compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc
    compiler-rt/trunk/test/asan/TestCases/scribble.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc?rev=299089&r1=299088&r2=299089&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Darwin/scribble.cc Thu Mar 30 12:01:35 2017
@@ -3,6 +3,7 @@
 // RUN: env MallocScribble=1 MallocPreScribble=1 %run %t 2>&1 | FileCheck --check-prefix=CHECK-SCRIBBLE %s
 // RUN: %env_asan_opts=max_free_fill_size=4096 %run %t 2>&1 | FileCheck --check-prefix=CHECK-SCRIBBLE %s
 
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

Modified: compiler-rt/trunk/test/asan/TestCases/scribble.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/scribble.cc?rev=299089&r1=299088&r2=299089&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/scribble.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/scribble.cc Thu Mar 30 12:01:35 2017
@@ -2,6 +2,7 @@
 // RUN: %run %t 2>&1 | FileCheck --check-prefix=CHECK-NOSCRIBBLE %s
 // RUN: %env_asan_opts=max_free_fill_size=4096 %run %t 2>&1 | FileCheck --check-prefix=CHECK-SCRIBBLE %s
 
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>




More information about the llvm-commits mailing list