Dear all,<br><br>Let's say there is some complex tblgen intrinsic definition, for example:<br><br>class MEMBAR<string StrOp, Intrinsic IntOP> :<br>              NVPTXInst<(outs), (ins),<br>            StrOp, [(IntOP)]>;<br>
<br>def INT_MEMBAR_CTA : MEMBAR<"membar.cta;", int_nvvm_membar_cta>;<br>def INT_MEMBAR_GL  : MEMBAR<"<a href="http://membar.gl">membar.gl</a>;",  int_nvvm_membar_gl>;<br>def INT_MEMBAR_SYS : MEMBAR<"membar.sys;", int_nvvm_membar_sys>;<br>
<br>Question: how to set an isTarget bit to the Intrinsic subclass of it?<br><br>In simple cases that would be <br><br>let isTarget = 1 in { ... }<br><br>How to make the same here?<br><br>Thanks,<br>- D.<br><br>