search for: 6af0d924

Displaying 2 results from an estimated 2 matches for "6af0d924".

2013 Mar 15
0
[LLVMdev] write a simple MachineFunctionPass
...ctionPass, I have no problems and that is weird.. > > Thank you for any advice ! > > > > -- Best regards, Alexandru Ionut Diaconescu -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130315/6af0d924/attachment.html>
2013 Mar 15
2
[LLVMdev] write a simple MachineFunctionPass
Hello everyone, I have written several complex passes till now, but I cannot write a MachineFunctionPass pass. It just gives me segfault. Hence I reduced the pass to the following form : using namespace llvm; namespace { class CFGexplorator : public MachineFunctionPass { public: static char ID; // Pass identification, replacement for typeid CFGexplorator() : MachineFunctionPass(ID)