5#include "llvm/IR/Function.h"
6#include "llvm/IR/Instruction.h"
12std::vector<llvm::Instruction *>
GetPred(llvm::Instruction *);
13std::vector<llvm::Instruction *>
GetSucc(llvm::Instruction *);
Definition: PointsToBenchmark.cpp:19
void InstNamer(llvm::Function &F)
InstNamer - sets name to the SSA temporaries.
Definition: CFGUtils.cpp:14
int getPointerOperandIndex(llvm::Instruction *Inst)
Definition: CFGUtils.cpp:55
bool SkipFunction(llvm::Function &F)
Definition: CFGUtils.cpp:19
std::vector< llvm::Instruction * > GetSucc(llvm::Instruction *Inst)
Definition: CFGUtils.cpp:42
std::vector< llvm::Instruction * > GetPred(llvm::Instruction *Inst)
Definition: CFGUtils.cpp:29