<div dir="ltr">There is a getParent() function in MachineBasicBlock that returns non-const MachineFunction.<div><br></div><div>Patrick</div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-12-02 18:12 GMT-05:00 Rail Shafigulin via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I'm trying to clone a MachineInstr in the AsmPrinter::EmitInstruction, Here is the code:<br><br>void EsenciaAsmPrinter::EmitInstruction(const MachineInstr *MI) {<br>  const MachineFunction *MF = MI->getParent()->getParent();<br>  MachineInstr *CloneMI = MF->CloneMachineInstr(MI);<br>...<br>...<br>}<br><br></div><div>The problem is that MF is a const and CloneMachineInstr expects a non-const. Does anybody know if there is a way to create a copy of a given MachineInstr?<br><br></div><div>Any help is appreciated.<span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888"><div><div><div><div><br>-- <br><div><div dir="ltr"><div><div dir="ltr"><div>Rail Shafigulin<br></div>Software Engineer <br>Esencia Technologies<br></div></div></div></div>
</div></div></div></div></font></span></div>
<br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><br></div>