diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2015-01-29 15:19:13 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2015-01-29 15:19:13 +0000 |
commit | d39df1e24de9866e157f2c56fdc4016f1433b956 (patch) | |
tree | 15aac68f983198aafc75402f8f2adf20a6e1b21c /llvm/lib | |
parent | 78070fbae59b29b5fc7b970b948a9991cc9e9bbc (diff) | |
download | bcm5719-llvm-d39df1e24de9866e157f2c56fdc4016f1433b956.tar.gz bcm5719-llvm-d39df1e24de9866e157f2c56fdc4016f1433b956.zip |
Adding missing #includes to try to get this to compile on Windows with Visual Studio.
llvm-svn: 227445
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerCrossOver.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/ExactTest.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/InfiniteTest.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/NullDerefTest.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/SimpleTest.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/TimeoutTest.cpp | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerCrossOver.cpp b/llvm/lib/Fuzzer/FuzzerCrossOver.cpp index 87ad555d314..94af6d547ed 100644 --- a/llvm/lib/Fuzzer/FuzzerCrossOver.cpp +++ b/llvm/lib/Fuzzer/FuzzerCrossOver.cpp @@ -10,6 +10,7 @@ //===----------------------------------------------------------------------===// #include "FuzzerInternal.h" +#include <algorithm> namespace fuzzer { diff --git a/llvm/lib/Fuzzer/test/ExactTest.cpp b/llvm/lib/Fuzzer/test/ExactTest.cpp index 662dd333eea..c9898f3c811 100644 --- a/llvm/lib/Fuzzer/test/ExactTest.cpp +++ b/llvm/lib/Fuzzer/test/ExactTest.cpp @@ -1,4 +1,5 @@ // Simple test for a fuzzer. The fuzzer must find the string "FUZZER". +#include <cstdint> #include <cstdlib> #include <cstddef> #include <iostream> diff --git a/llvm/lib/Fuzzer/test/InfiniteTest.cpp b/llvm/lib/Fuzzer/test/InfiniteTest.cpp index 9f4864abdd4..ee1635d1996 100644 --- a/llvm/lib/Fuzzer/test/InfiniteTest.cpp +++ b/llvm/lib/Fuzzer/test/InfiniteTest.cpp @@ -1,4 +1,5 @@ // Simple test for a fuzzer. The fuzzer must find the string "Hi!". +#include <cstdint> #include <cstdlib> #include <cstddef> #include <iostream> diff --git a/llvm/lib/Fuzzer/test/NullDerefTest.cpp b/llvm/lib/Fuzzer/test/NullDerefTest.cpp index 602276f3c81..8811e386f9d 100644 --- a/llvm/lib/Fuzzer/test/NullDerefTest.cpp +++ b/llvm/lib/Fuzzer/test/NullDerefTest.cpp @@ -1,4 +1,5 @@ // Simple test for a fuzzer. The fuzzer must find the string "Hi!". +#include <cstdint> #include <cstdlib> #include <cstddef> #include <iostream> diff --git a/llvm/lib/Fuzzer/test/SimpleTest.cpp b/llvm/lib/Fuzzer/test/SimpleTest.cpp index 9e20d8e6ac9..adb90cebe86 100644 --- a/llvm/lib/Fuzzer/test/SimpleTest.cpp +++ b/llvm/lib/Fuzzer/test/SimpleTest.cpp @@ -1,4 +1,5 @@ // Simple test for a fuzzer. The fuzzer must find the string "Hi!". +#include <cstdint> #include <cstdlib> #include <cstddef> #include <iostream> diff --git a/llvm/lib/Fuzzer/test/TimeoutTest.cpp b/llvm/lib/Fuzzer/test/TimeoutTest.cpp index c5a8ac00579..266ead646a5 100644 --- a/llvm/lib/Fuzzer/test/TimeoutTest.cpp +++ b/llvm/lib/Fuzzer/test/TimeoutTest.cpp @@ -1,4 +1,5 @@ // Simple test for a fuzzer. The fuzzer must find the string "Hi!". +#include <cstdint> #include <cstdlib> #include <cstddef> #include <iostream> |