<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Hi!</div><div><br></div><div>I've have Instruction in my code: </div><div>  ...</div><div>   %call6 = call i32 %9(%class.A* %call3, i32 2)</div><div>  ...</div><div><br></div><div><br></div><div>And I want to get something like this:</div><div><div>...</div><div><br></div><div>%11 = icmp eq i32 (%class.D*, i32)* %10, @_ZThn4_N1D1xEi</div><div>  br i1 %11, label %12, label %14</div><div><br></div><div>; <label>:12                                      ; preds = %7</div><div>  %13 = bitcast %class.A* %call3 to %class.D*</div><div>  %call64 = call i32 @_ZThn4_N1D1xEi(%class.D* %13, i32 2)     // this one should be called instead of original in true-block of icmp </div><div>  br label %15</div><div><br></div><div>; <label>:14                                      ; preds = %7</div><div>  %call6 = call i32 %9(%class.A* %call3, i32 2)              // this is my instruction</div><div>  br label %15</div><div><br></div><div>; <label>:15                                      ; preds = %12, %14</div></div><div>....</div><div><br></div><div><br></div><div>The problem is that results of instructions have different names (%call6, %call64). I create new CallInst by CallInst::Create(F1,args,CS.getInstruction()->getName(), rightCall); , where CS - original call site, but new Instruction still haven't same name, but similar as I see.... </div><div><br></div><div>It is possible to give exactly same name for result if CallInst in my case? Thanks!</div><div apple-content-edited="true">
</div>
<br><div>
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div></div><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Yours sincerely,</div><div>Kadysev Mikhail</div></div></span></div></span></span>
</div>

<br></body></html>