Code reorganization: s/aux/auxiliary/.
[mesa.git] / src / gallium / auxiliary / llvm / loweringpass.h
1 #ifndef LOWERINGPASS_H
2 #define LOWERINGPASS_H
3
4 #include "llvm/Pass.h"
5 #include "llvm/Module.h"
6
7 struct LoweringPass : public llvm::ModulePass
8 {
9 static char ID;
10 LoweringPass();
11
12 virtual bool runOnModule(llvm::Module &m);
13 };
14
15 #endif