1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef LOWERINGPASS_H #define LOWERINGPASS_H #include "llvm/Pass.h" #include "llvm/Module.h" struct LoweringPass : public llvm::ModulePass { static char ID; LoweringPass(); virtual bool runOnModule(llvm::Module &m); }; #endif