google / honggfuzz

Security oriented software fuzzer. Supports evolutionary, feedback-driven fuzzing based on code coverage (SW and HW based)
https://honggfuzz.dev
Apache License 2.0
3.04k stars 511 forks source link

using __builtin_memcpy_inline from LLVM in few places. #466

Closed devnexen closed 2 years ago

devnexen commented 2 years ago

Differences with __builtin_memcpy are it does not generate extra calls and it can work only with compile time sizes.

robertswiecki commented 2 years ago

Interesting addition to LLVM, thanks!