<div dir="ltr">There are replaceable MD nodes - you could check how Clang does this when encountering a declaration, then a definition:<br><br>struct foo;<br>void f(foo *) {<br>}<br>struct foo {<br>};<br>void g(foo) {<br>}<br><br>Should exercise "Build a declaration", "build a definition", "replace declaration with definition"</div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 24, 2016 at 2:09 PM, Rodney M. Bates via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Before metadata was separated from values, I could create a debug info forward<br>
declaration and eventually resolve it using LLVMReplaceAllUsesWith in core.h.<br>
Now, I can't figure out how to resolve it.  I can find no function that seems<br>
to do this.  My one wild guess that giving the forward decl and the resolving<br>
decl the same UniqueId might do it is not working.<br>
<br>
I am currently using 3.6.1, but I see nothing the voluminous diff of DIBuilder<br>
from 3.6.1 to 3.7.1 that looks like it has anything to do with this.<span class="HOEnZb"><font color="#888888"><br>
-- <br>
Rodney Bates<br>
<a href="mailto:rodney.m.bates@acm.org" target="_blank">rodney.m.bates@acm.org</a><br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">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>
</font></span></blockquote></div><br></div>