diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp b/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp index 7df32ad5793..d80060207de 100644 --- a/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp +++ b/llvm/lib/Fuzzer/test/SignedIntOverflowTest.cpp @@ -3,11 +3,11 @@ // Test for signed-integer-overflow. #include <assert.h> +#include <climits> +#include <cstddef> #include <cstdint> #include <cstdlib> -#include <cstddef> #include <iostream> -#include <climits> static volatile int Sink; static int Large = INT_MAX; |