[fuzzer][test] Add #include <cstdint> for gcc-13
authorYouling Tang <tangyouling@loongson.cn>
Thu, 10 Nov 2022 05:44:10 +0000 (13:44 +0800)
committerWeining Lu <luweining@loongson.cn>
Thu, 10 Nov 2022 05:44:11 +0000 (13:44 +0800)
See https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes.

Reviewed By: SixWeining

Differential Revision: https://reviews.llvm.org/D137696

compiler-rt/test/fuzzer/CounterTest.cpp
compiler-rt/test/fuzzer/FlagsTest.cpp

index 84112f9..e04da67 100644 (file)
@@ -4,6 +4,7 @@
 
 // Test for a fuzzer: must find the case where a particular basic block is
 // executed many times.
+#include <cstdint>
 #include <iostream>
 
 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
index 8acd2f9..9c3e91c 100644 (file)
@@ -3,6 +3,7 @@
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 
 // Parse some flags
+#include <cstdint>
 #include <string>
 #include <vector>