forked from OSchip/llvm-project
parent
28174f5a3a
commit
7e5af6808c
|
@ -30,6 +30,7 @@
|
|||
<li><a href="#readllvmobjectfile">readLLVMObjectFile()</a></li>
|
||||
<li><a href="#optimizemodules">optimizeModules()</a></li>
|
||||
<li><a href="#gettargettriple">getTargetTriple()</a></li>
|
||||
<li><a href="#removemodule">removeModule()</a></li>
|
||||
<li><a href="#getalignment">getAlignment()</a></li>
|
||||
</ul></li>
|
||||
<li><a href="#debug">Debugging Information</a></li>
|
||||
|
@ -338,6 +339,17 @@ $ llvm-gcc4 a.o main.o -o main # <-- standard link command without any modifi
|
|||
while validating LLVM bytecode file.</p>
|
||||
</div>
|
||||
|
||||
<!-- ======================================================================= -->
|
||||
<div class="doc_subsection">
|
||||
<a name="removemodule">removeModule()</a>
|
||||
</div>
|
||||
|
||||
<div class="doc_text">
|
||||
<p>Internally, <a href="#lto">LLVMlto</a> maintains LLVM bytecode modules in
|
||||
memory. The linker may use <tt>removeModule()</tt> method to remove desired
|
||||
modules from memory. </p>
|
||||
</div>
|
||||
|
||||
<!-- ======================================================================= -->
|
||||
<div class="doc_subsection">
|
||||
<a name="getalignment">getAlignment()</a>
|
||||
|
|
Loading…
Reference in New Issue