[tools] Fix LLVM_USE_SANITIZE_COVERAGE build (#87722)

This commit is contained in:
Justin Fargnoli 2024-04-15 11:53:15 -07:00 committed by GitHub
parent 4533956848
commit f9d761df50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
set(LLVM_LINK_COMPONENTS
BitReader
Core
Support
)
add_llvm_fuzzer(llvm-dis-fuzzer
llvm-dis-fuzzer.cpp

View File

@ -11,7 +11,9 @@
//===----------------------------------------------------------------------===//
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/VFABIDemangler.h"
#include "llvm/Support/SourceMgr.h"
using namespace llvm;