search for: runtimeeval

Displaying 1 result from an estimated 1 matches for "runtimeeval".

Did you mean: runtime_val
2013 Feb 22
0
[LLVMdev] An error:Pass 'Runtime Evaluation' is not initialized
Hi,all: I am a new at writing LLVM PASS, i write a pass like this : using namespace llvm; namespace { class RuntimeEval : public ModulePass { public: static char ID; // Pass identification, replacement for typeid RuntimeEval() : ModulePass(ID) { } virtual bool runOnModule(Module &M) { return false; } }; } char HSASupportedRuntimeEval::ID = 0; static RegisterPass<Runti...