blob: f62dcf6ba73f1c4e9cbba878b2f6677c86d93b13 [file] [log] [blame]
#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