diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-18 23:59:50 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-18 23:59:50 +0000 |
commit | fc8d930f6ef1aa4fbd402c5b36f734214863d5d4 (patch) | |
tree | 82fa592a01d7ae7fb20b92bc06f6f5f52208566f /llvm/docs/GoldPlugin.html | |
parent | 0c7732499bea556551fd5bb639d2e4d8eb922e8a (diff) | |
download | bcm5719-llvm-fc8d930f6ef1aa4fbd402c5b36f734214863d5d4.tar.gz bcm5719-llvm-fc8d930f6ef1aa4fbd402c5b36f734214863d5d4.zip |
docs: Use <Hn> as Heading elements instead of <DIV class="doc_foo">.
H1 ... doc_title
H2 ... doc_section
H3 ... doc_subsection
H4 ... doc_subsubsection
llvm-svn: 129736
Diffstat (limited to 'llvm/docs/GoldPlugin.html')
-rw-r--r-- | llvm/docs/GoldPlugin.html | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/llvm/docs/GoldPlugin.html b/llvm/docs/GoldPlugin.html index 051d8a49433..7ba11866278 100644 --- a/llvm/docs/GoldPlugin.html +++ b/llvm/docs/GoldPlugin.html @@ -7,7 +7,7 @@ </head> <body> -<div class="doc_title">LLVM gold plugin</div> +<h1>LLVM gold plugin</h1> <ol> <li><a href="#introduction">Introduction</a></li> <li><a href="#build">How to build it</a></li> @@ -21,7 +21,7 @@ <div class="doc_author">Written by Nick Lewycky</div> <!--=========================================================================--> -<div class="doc_section"><a name="introduction">Introduction</a></div> +<h2><a name="introduction">Introduction</a></h2> <!--=========================================================================--> <div class="doc_text"> <p>Building with link time optimization requires cooperation from the @@ -38,7 +38,7 @@ The same plugin can also be used by other tools such as <tt>ar</tt> and <tt>nm</tt>. </div> <!--=========================================================================--> -<div class="doc_section"><a name="build">How to build it</a></div> +<h2><a name="build">How to build it</a></h2> <!--=========================================================================--> <div class="doc_text"> <p>You need to have gold with plugin support and build the LLVMgold @@ -72,7 +72,7 @@ placed. </ul> </div> <!--=========================================================================--> -<div class="doc_section"><a name="usage">Usage</a></div> +<h2><a name="usage">Usage</a></h2> <!--=========================================================================--> <div class="doc_text"> <p>The linker takes a <tt>-plugin</tt> option that points to the path of @@ -98,9 +98,9 @@ placed. </div> <!-- ======================================================================= --> -<div class="doc_subsection"> +<h3> <a name="example1">Example of link time optimization</a> -</div> +</h3> <div class="doc_text"> <p>The following example shows a worked example of the gold plugin mixing @@ -150,7 +150,11 @@ $ llvm-gcc -use-gold-plugin a.a b.o -o main # <-- link with LLVMgold plugin </div> <!--=========================================================================--> -<div class="doc_section"><a name="lto_autotools">Quickstart for using LTO with autotooled projects</a></div> +<h2> + <a name="lto_autotools"> + Quickstart for using LTO with autotooled projects + </a> +</h2> <!--=========================================================================--> <div class="doc_text"> <p>Once your system <tt>ld</tt>, <tt>ar</tt> and <tt>nm</tt> all support LLVM @@ -189,7 +193,7 @@ export CFLAGS="-O4" </div> <!--=========================================================================--> -<div class="doc_section"><a name="licensing">Licensing</a></div> +<h2><a name="licensing">Licensing</a></h2> <!--=========================================================================--> <div class="doc_text"> <p>Gold is licensed under the GPLv3. LLVMgold uses the interface file |