Files
third_party_mesa3d/src/gallium/auxiliary/llvm/loweringpass.cpp
José Fonseca 92fcbf6e7b Code reorganization: s/aux/auxiliary/.
"aux" is a reserved name on Windows (X_X)
2008-02-15 20:07:18 +09:00

18 lines
329 B
C++

#include "loweringpass.h"
using namespace llvm;
char LoweringPass::ID = 0;
RegisterPass<LoweringPass> X("lowering", "Lowering Pass");
LoweringPass::LoweringPass()
: ModulePass((intptr_t)&ID)
{
}
bool LoweringPass::runOnModule(Module &m)
{
llvm::cerr << "Hello: " << m.getModuleIdentifier() << "\n";
return false;
}