Hi. I have 2 byte code files with 2 exactly same StructTypes. Is it possible to use some argument of llvm-link for getting result bytecode with one StructType for bytecodes, not two types like Type and Type.<some number>? С уважением, Кадысев Михаил -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120504/18581c27/attachment.html>
Hi,> I have 2 byte code files with 2 exactly same StructTypes. > > Is it possible to use some argument of llvm-link for getting result bytecode > with one StructType for bytecodes, not two types like Type and Type.<some number>?the linker automatically merges types if it thinks that it makes sense. So it must think that there is some kind of problem in your case. Probably the best thing is for you to provide an explicit example where you think the linker is getting it wrong. Ciao, Duncan.