diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-05 15:42:44 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-05 15:42:44 +0000 |
commit | e15192b36bb5e99838d3f70bf79f7b8bed7a75b9 (patch) | |
tree | f806c1b39e3729a535af21298a405d66f6904990 /docs/GarbageCollection.html | |
parent | ea2381eb7143e2ba3ad37de386cabd392b6609d8 (diff) |
Documentation: fix HTML validation errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GarbageCollection.html')
-rw-r--r-- | docs/GarbageCollection.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/GarbageCollection.html b/docs/GarbageCollection.html index b155bb9374..d0b651eb64 100644 --- a/docs/GarbageCollection.html +++ b/docs/GarbageCollection.html @@ -334,11 +334,11 @@ void visitGCRoots(void (*Visitor)(void **Root, const void *Meta)) { // For roots [0, NumMeta), the metadata pointer is in the FrameMap. for (unsigned e = R->Map->NumMeta; i != e; ++i) - Visitor(&R->Roots[i], R->Map->Meta[i]); + Visitor(&R->Roots[i], R->Map->Meta[i]); // For roots [NumMeta, NumRoots), the metadata pointer is null. for (unsigned e = R->Map->NumRoots; i != e; ++i) - Visitor(&R->Roots[i], NULL); + Visitor(&R->Roots[i], NULL); } }</pre></div> @@ -398,7 +398,7 @@ program.</p> </div> <div class="doc_code"><tt> - define <i>ty</i> @<i>name</i>(...) <u>gc "<i>name</i>"</u> { ... + define <i>ty</i> @<i>name</i>(...) <span style="text-decoration: underline">gc "<i>name</i>"</span> { ... </tt></div> <div class="doc_text"> |