diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-09 22:21:16 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-09 22:21:16 +0000 |
commit | 1837152a345c533286a409424590d236b0652691 (patch) | |
tree | fc451958ce257eb5686380e309b5581f63fecdf6 /llvm/lib | |
parent | 950a82047bccac3afe109be8763b8e337c6b35f6 (diff) | |
download | bcm5719-llvm-1837152a345c533286a409424590d236b0652691.tar.gz bcm5719-llvm-1837152a345c533286a409424590d236b0652691.zip |
[libFuzzer] use sizeof() in tests instead of 4 and 8
llvm-svn: 281111
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp | 8 | ||||
-rw-r--r-- | llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp b/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp index 0d199fcb418..577481431ae 100644 --- a/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp +++ b/llvm/lib/Fuzzer/test/AbsNegAndConstant64Test.cpp @@ -10,10 +10,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if (Size < 16) return 0; - long x; - unsigned long y; - memcpy(&x, Data, 8); - memcpy(&y, Data + 8, 8); + int64_t x; + uint64_t y; + memcpy(&x, Data, sizeof(x)); + memcpy(&y, Data + sizeof(x), sizeof(y)); if (labs(x) < 0 && y == 0xbaddcafedeadbeefUL) { printf("BINGO; Found the target, exiting; x = 0x%lx y 0x%lx\n", x, y); exit(1); diff --git a/llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp b/llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp index f2ade45959d..69075a454c9 100644 --- a/llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp +++ b/llvm/lib/Fuzzer/test/AbsNegAndConstantTest.cpp @@ -12,8 +12,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if (Size < 8) return 0; int x; unsigned y; - memcpy(&x, Data, 4); - memcpy(&y, Data + 4, 4); + memcpy(&x, Data, sizeof(x)); + memcpy(&y, Data + sizeof(x), sizeof(y)); if (abs(x) < 0 && y == 0xbaddcafe) { printf("BINGO; Found the target, exiting; x = 0x%x y 0x%x\n", x, y); exit(1); |