Home | History | Annotate | Download | only in llvm-opt-fuzzer
      1 set(LLVM_LINK_COMPONENTS
      2   ${LLVM_TARGETS_TO_BUILD}
      3   Analysis
      4   BitReader
      5   BitWriter
      6   CodeGen
      7   Core
      8   Coroutines
      9   IPO
     10   IRReader
     11   AggressiveInstCombine
     12   InstCombine
     13   Instrumentation
     14   FuzzMutate
     15   MC
     16   ObjCARCOpts
     17   ScalarOpts
     18   Support
     19   Target
     20   TransformUtils
     21   Vectorize
     22   Passes
     23 )
     24 
     25 add_llvm_fuzzer(llvm-opt-fuzzer
     26   llvm-opt-fuzzer.cpp
     27   DUMMY_MAIN DummyOptFuzzer.cpp
     28   )
     29