mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
|
16 years ago
|
#include "llvm/Support/raw_ostream.h"
|
||
|
|
namespace llvm {
|
||
|
|
class Function;
|
||
|
|
class Instruction;
|
||
|
|
class Pass;
|
||
|
|
}
|
||
|
|
namespace ClamBCModule {
|
||
|
|
static void stop(const char *msg, llvm::Function* F, llvm::Instruction* I) {
|
||
|
|
llvm::errs() << msg << "\n";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
llvm::Pass *createClamBCRTChecks();
|