diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-20 03:10:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-20 03:10:14 +0000 |
commit | 38eee3cc29cb9bee8db573a6320852360f310752 (patch) | |
tree | c9de2313e4a09135af6efd378966b8b11be06c5c /docs | |
parent | 583b6dbcc586359e6ea7c3e4ac46bdb708779dce (diff) | |
download | external_llvm-38eee3cc29cb9bee8db573a6320852360f310752.zip external_llvm-38eee3cc29cb9bee8db573a6320852360f310752.tar.gz external_llvm-38eee3cc29cb9bee8db573a6320852360f310752.tar.bz2 |
fix this back, thanks Eli
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79508 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 83251e5..eaed402 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -2422,7 +2422,7 @@ units concurrently on independent server threads. Fortunately, <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 |