summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/gallivm/loweringpass.h
blob: f62dcf6ba73f1c4e9cbba878b2f6677c86d93b13 (plain)
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