clamav/libclamav/c++/ClamBCModule.h
Micah Snyder b0fc4c1346 clang-format: c++ bytecode source
Previously we'd not clang-formatted the c++ bytecode files because:
A) It's a massive difference in format
B) I wasn't sure, at the time, which code was "ours"

Reformatting now that the LLVM source is all removed and before it gets
updated to support modern LLVM versions.
2021-07-05 15:19:02 -07:00

12 lines
258 B
C++

#include "llvm/Support/raw_ostream.h"
namespace llvm
{
class Function;
class Instruction;
class Pass;
} // namespace llvm
namespace ClamBCModule
{
void stop(const char* msg, llvm::Function* F, llvm::Instruction* I = 0);
}
llvm::Pass* createClamBCRTChecks();