Provide link.

llvm-svn: 36257
This commit is contained in:
Jeff Cohen 2007-04-18 17:26:14 +00:00
parent 29845cd40d
commit 43a2fb747f
1 changed files with 3 additions and 2 deletions

View File

@ -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