<div dir="ltr"><div>Hi everyone,</div><div><br></div><div>I write a new FunctionPass which wants to use pass PostDominatorTree, so I </div><div>implement the next function:</div><div><br></div><div><div>void getAnalysisUsage(AnalysisUsage &AU) const {</div><div><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">      AU.addRequired<PostDominatorTree>(); </span><br></div><div>      AU.setPreservesAll();</div><div>}</div></div><div><br></div><div>Then I get PDT through the next statement:</div><div><br></div><div>PostDominatorTree *PDT = &getAnalysis<PostDominatorTree>();</div><div><br></div><div>My code can be successfully compiled. However, I encounter the next error when I ran the code:</div><div><br></div><div><div><b>Pass 'Unnamed pass: implement Pass::getPassName()' is not initialized.</b></div><div><b>Verify if there is a pass dependency cycle.</b></div><div><b>Required Passes:</b></div></div><div><br></div><div>I used llvm-3.4. Any comments are welcome. Thanks!</div><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><br></div><div>Best regards,</div><div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Qiuping Yi</div><div style="font-size:12.8px"><span style="font-size:12.8px">Institute Of Software</span><br style="font-size:12.8px"><span style="font-size:12.8px">Chinese Academy of Sciences</span><br></div></div></div></div></div></div></div></div></div></div>
</div>