From 474f1a1d56fbb5472dd9bbf5828c413ae7e629dd Mon Sep 17 00:00:00 2001 From: Zack Rusin Date: Fri, 25 Jan 2008 06:36:35 -0500 Subject: add a stub of a lowering pass --- src/mesa/pipe/llvm/loweringpass.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/mesa/pipe/llvm/loweringpass.h (limited to 'src/mesa/pipe/llvm/loweringpass.h') diff --git a/src/mesa/pipe/llvm/loweringpass.h b/src/mesa/pipe/llvm/loweringpass.h new file mode 100644 index 0000000000..f62dcf6ba7 --- /dev/null +++ b/src/mesa/pipe/llvm/loweringpass.h @@ -0,0 +1,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 -- cgit v1.2.3