X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FGarbageCollection.html;h=0accd0c78a09796cb876e7eea47086c36e42a8b7;hb=b627eab0402edabb19c702fd1f04c6c59ee2b339;hp=f2f37229924ab32c8b933d2ff71daf0875467181;hpb=8036ca47e27c22055cf8d708358b2e48b2a63e3b;p=oota-llvm.git diff --git a/docs/GarbageCollection.html b/docs/GarbageCollection.html index f2f37229924..0accd0c78a0 100644 --- a/docs/GarbageCollection.html +++ b/docs/GarbageCollection.html @@ -65,8 +65,9 @@ conservative and accurate.

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.

+information from the compiler. The +Boehm collector is +an example of a state-of-the-art conservative collector.

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