summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/llvm/loweringpass.h
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2008-02-13 14:21:23 +1100
committerBen Skeggs <skeggsb@gmail.com>2008-02-13 14:21:23 +1100
commitb397a2bb203c2b28b746af7828d9ad192cde0bc1 (patch)
tree77448bf1db79ae112f057717109aaa98e5696b15 /src/mesa/pipe/llvm/loweringpass.h
parent5ba3dbe2cc8a9af5cae01f45eaf497f834400170 (diff)
parente20e89e48287808068086ec148920dd89495d813 (diff)
Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1
Diffstat (limited to 'src/mesa/pipe/llvm/loweringpass.h')
-rw-r--r--src/mesa/pipe/llvm/loweringpass.h15
1 files changed, 15 insertions, 0 deletions
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