diff options
author | Justin Bogner <mail@justinbogner.com> | 2017-08-21 22:57:06 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2017-08-21 22:57:06 +0000 |
commit | 7d449d31a4d2fe393e32be7c478c18b16b301428 (patch) | |
tree | 6deed6bee8fd3f5cc1ce4b77505a53f51326009a /llvm/lib/CMakeLists.txt | |
parent | 4056e80719317ec1719dde7c2b08d1720a4ad2a4 (diff) | |
download | bcm5719-llvm-7d449d31a4d2fe393e32be7c478c18b16b301428.tar.gz bcm5719-llvm-7d449d31a4d2fe393e32be7c478c18b16b301428.zip |
Re-apply "Introduce FuzzMutate library"
Same as r311392 with some fixes for library dependencies. Thanks to
Chapuni for helping work those out!
Original commit message:
This introduces the FuzzMutate library, which provides structured
fuzzing for LLVM IR, as described in my EuroLLVM 2017 talk. Most of
the basic mutators to inject and delete IR are provided, with support
for most basic operations.
llvm-svn: 311402
Diffstat (limited to 'llvm/lib/CMakeLists.txt')
-rw-r--r-- | llvm/lib/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CMakeLists.txt b/llvm/lib/CMakeLists.txt index 71b0a0aa0d3..5e20d503482 100644 --- a/llvm/lib/CMakeLists.txt +++ b/llvm/lib/CMakeLists.txt @@ -2,6 +2,7 @@ # CMakeLists.txt add_subdirectory(IR) +add_subdirectory(FuzzMutate) add_subdirectory(IRReader) add_subdirectory(CodeGen) add_subdirectory(BinaryFormat) |