CS计算机代考程序代写 #ifndef UTILS_H

#ifndef UTILS_H
#define UTILS_H

#include “llvm/IR/Instructions.h”

using namespace llvm;

std::string toString(Value *I);

std::vector getPredecessors(Instruction *I);

bool isTaintedInput(CallInst *CI);

bool isSanitizer(CallInst *CI);

#endif // UTILS_H