Scott,<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
I suppose ideally, I seek ONLY a tutorial on using LLVM IR as a source<br>
language and then getting from there to a bunch of LLVM IR source<br>
modules and from there to assembler/link.<br>
<br></blockquote><div><br></div><div>In that case, I guess just follow one of the llvm tool named 'llc' in debugger. It will read llvm IR text file and generate assembly output.</div><div> </div><div>If you need and overview of llvm components then lib/AsmParser reads llvm IR text file. lib/Transforms optimizes the llvm IR. lib/CodeGen (along with lib/Target) generates code from llvm IR which can be assembled and linked using traditional assembler and linker respectively. Browsing through various docs from <a href="http://llvm.org/docs/">http://llvm.org/docs/</a> will give definitely help you in general.</div>
<div><br></div></div>-<br>Devang<br>