[llvm] 2cb8ec8 - [Docs] Correct Boehm collector weblink in GarbageCollection.rst

via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 18 05:01:33 PDT 2021


Author: xgupta
Date: 2021-04-18T17:30:17+05:30
New Revision: 2cb8ec8f38cf499f7b303652a0e01f9151e6e7b9

URL: https://github.com/llvm/llvm-project/commit/2cb8ec8f38cf499f7b303652a0e01f9151e6e7b9
DIFF: https://github.com/llvm/llvm-project/commit/2cb8ec8f38cf499f7b303652a0e01f9151e6e7b9.diff

LOG: [Docs] Correct Boehm collector weblink in GarbageCollection.rst

Added: 
    

Modified: 
    llvm/docs/GarbageCollection.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/GarbageCollection.rst b/llvm/docs/GarbageCollection.rst
index ade944b6d455d..800182da37285 100644
--- a/llvm/docs/GarbageCollection.rst
+++ b/llvm/docs/GarbageCollection.rst
@@ -87,7 +87,7 @@ 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 `Boehm collector
-<http://www.hpl.hp.com/personal/Hans_Boehm/gc/>`__ is an example of a
+<https://hboehm.info/gc/>`__ is an example of a
 state-of-the-art conservative collector.
 
 Accurate garbage collection requires the ability to identify all pointers in the


        


More information about the llvm-commits mailing list