<div dir="ltr">I see,<br>Adding includes is trivial even w/o llvm, but the real problem here is manipulation of classes, if I understand you correctly adding an inheritee wouldn't be possible.<br>David<br><br><div class="gmail_quote">
On Tue, Jul 7, 2009 at 12:43 PM, Eli Friedman <span dir="ltr"><<a href="mailto:eli.friedman@gmail.com">eli.friedman@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Tue, Jul 7, 2009 at 1:42 AM, David Minor<<a href="mailto:dahvid.minor@gmail.com">dahvid.minor@gmail.com</a>> wrote:<br>
> Hi Eli,<br>
> Let's say I have a file ClassA.h, that pairs with a file ClassA.cpp<br>
> to product a library libClassA.a.<br>
> ClassA.h contains the single declaration.<br>
><br>
> class A {...};<br>
><br>
> I want to transform it to:<br>
><br>
> #include "ClassB.h"<br>
><br>
> class A : public class B {...};<br>
><br>
> ClassB.h is the header file for a library libClassB.a built from ClassB.cpp<br>
> and ClassB.h.<br>
> I can clearly link libClassB with libClassA. But how can I bring in the<br>
> header file so that it's declarations will be known in ClassA.h.  Remember<br>
> this is happening during a pass.<br>
<br>
</div>You have to rebuild libClassA.a from scratch; the generation of<br>
bitcode makes too many hard-coded assumptions about the layout of<br>
classes to manipulate the bitcode accurately.<br>
<div><div></div><div class="h5"><br>
-Eli<br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
</div></div></blockquote></div><br></div>