[llvm-commits] [llvm] r79508 - /llvm/trunk/docs/ProgrammersManual.html
Chris Lattner
sabre at nondot.org
Wed Aug 19 20:10:15 PDT 2009
Author: lattner
Date: Wed Aug 19 22:10:14 2009
New Revision: 79508
URL: http://llvm.org/viewvc/llvm-project?rev=79508&view=rev
Log:
fix this back, thanks Eli
Modified:
llvm/trunk/docs/ProgrammersManual.html
Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=79508&r1=79507&r2=79508&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Wed Aug 19 22:10:14 2009
@@ -2422,7 +2422,7 @@
<p>
Conceptually, <tt>LLVMContext</tt> provides isolation. Every LLVM entity
(<tt>Module</tt>s, <tt>Value</tt>s, <tt>Type</tt>s, <tt>Constant</tt>s, etc.)
-in LLVM's in-memory IR belong to an <tt>LLVMContext</tt>. Entities in
+in LLVM's in-memory IR belongs to an <tt>LLVMContext</tt>. Entities in
different contexts <em>cannot</em> interact with each other: <tt>Module</tt>s in
different contexts cannot be linked together, <tt>Function</tt>s cannot be added
to <tt>Module</tt>s in different contexts, etc. What this means is that is is
More information about the llvm-commits
mailing list