HTML validation fixes.
authorDan Gohman <gohman@apple.com>
Wed, 17 Feb 2010 22:50:12 +0000 (22:50 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 17 Feb 2010 22:50:12 +0000 (22:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96527 91177308-0d34-0410-b5e6-96231b3b80d8

docs/AdvancedGetElementPtr.html

index 128effee0928a300ce4b834ae479144af90cffb8..02d1e321218e4e94413bd1c3b80e3aa2886cad50 100644 (file)
 <div class="doc_text">
    <p>The design of GEP has the following goals, in rough unofficial
       order of priority:</p>
-   <p>
-     <ol>
-       <li>Support C, C-like languages, and languages which can be
-           conceptually lowered into C (this covers a lot).</li>
-       <li>Support optimizations such as those that are common in
-           C compilers.</li>
-       <li>Provide a consistent method for computing addresses so that
-           address computations don't need to be a part of load and
-           store instructions in the IR.</li>
-       <li>Support non-C-like languages, to the extent that it doesn't
-           interfere with other goals.</li>
-       <li>Minimize target-specific information in the IR.</li>
-     </ol>
-   </p>
+   <ol>
+     <li>Support C, C-like languages, and languages which can be
+         conceptually lowered into C (this covers a lot).</li>
+     <li>Support optimizations such as those that are common in
+         C compilers.</li>
+     <li>Provide a consistent method for computing addresses so that
+         address computations don't need to be a part of load and
+         store instructions in the IR.</li>
+     <li>Support non-C-like languages, to the extent that it doesn't
+         interfere with other goals.</li>
+     <li>Minimize target-specific information in the IR.</li>
+   </ol>
 </div>
 
 <!-- *********************************************************************** -->