Displaying 1 result from an estimated 1 matches for "f5722c58".
2013 Feb 23
1
[LLVMdev] One question about two passes interaction
Actually I tried ModulePass. It works exactly as what I expect.But I
found another problem. In ModulePass, it not only collects the
functions I create, it also treat some system function such as
'printf' as a function. I do not if I does something wrong. The codes
I use is as follows:
virtual bool runOnModule(Module &M) {
for (Module::iterator b = M.begin(), be = M.end(); b !=