summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2007-04-18 17:26:14 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2007-04-18 17:26:14 +0000
commit65fc36b64afd0335a93b82e12e93f4894ebb9683 (patch)
treefd3b9c0e69dc4e434ea3adb596183f13b1f83657 /docs
parent23420c09c0f130415f8a9243e5508026612d510b (diff)
downloadllvm-65fc36b64afd0335a93b82e12e93f4894ebb9683.tar.gz
llvm-65fc36b64afd0335a93b82e12e93f4894ebb9683.tar.bz2
llvm-65fc36b64afd0335a93b82e12e93f4894ebb9683.tar.xz
Provide link.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/GarbageCollection.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/GarbageCollection.html b/docs/GarbageCollection.html
index f2f3722992..0accd0c78a 100644
--- a/docs/GarbageCollection.html
+++ b/docs/GarbageCollection.html
@@ -65,8 +65,9 @@ conservative and accurate.</p>
<p>Conservative garbage collection often does not require any special support
from either the language or the compiler: it can handle non-type-safe
programming languages (such as C/C++) and does not require any special
-information from the compiler. The [LINK] Boehm collector is an example of a
-state-of-the-art conservative collector.</p>
+information from the compiler. The
+<a href="http://www.hpl.hp.com/personal/Hans_Boehm/gc/">Boehm collector</a> is
+an example of a state-of-the-art conservative collector.</p>
<p>Accurate garbage collection requires the ability to identify all pointers in
the program at run-time (which requires that the source-language be type-safe in