aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-11 23:49:50 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-11 23:49:50 +0000
commitc89108437229e9c50883f907a44fb7cea58de29f (patch)
tree4bbdc7321daa1ffd52d9278e55312abe3f89cec9 /docs
parent065cc7fa58856dea6baba9a706a6d16f46a8528c (diff)
downloadexternal_llvm-c89108437229e9c50883f907a44fb7cea58de29f.zip
external_llvm-c89108437229e9c50883f907a44fb7cea58de29f.tar.gz
external_llvm-c89108437229e9c50883f907a44fb7cea58de29f.tar.bz2
Fix validation errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35933 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 9f3ef0d..3b38ee0 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -454,7 +454,6 @@ All Global Variables and Functions have one of the following types of linkage:
until linked, if not linked, the symbol becomes null instead of being an
undefined reference.
</dd>
-</dl>
<dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt>
@@ -462,6 +461,7 @@ All Global Variables and Functions have one of the following types of linkage:
visible, meaning that it participates in linkage and can be used to resolve
external symbol references.
</dd>
+</dl>
<p>
The next two types of linkage are targeted for Microsoft Windows platform
@@ -779,13 +779,12 @@ desired. The syntax is very simple:
<div class="doc_text">
<p>A module may specify a target specific data layout string that specifies how
-data is to be laid out in memory. The syntax for the data layout is simply:<br/>
-<pre> target datalayout = "<i>layout specification</i>"
-</pre>
-The <i>layout specification</i> consists of a list of specifications separated
-by the minus sign character ('-'). Each specification starts with a letter
-and may include other information after the letter to define some aspect of the
-data layout. The specifications accepted are as follows: </p>
+data is to be laid out in memory. The syntax for the data layout is simply:</p>
+<pre> target datalayout = "<i>layout specification</i>"</pre>
+<p>The <i>layout specification</i> consists of a list of specifications
+separated by the minus sign character ('-'). Each specification starts with a
+letter and may include other information after the letter to define some
+aspect of the data layout. The specifications accepted are as follows: </p>
<dl>
<dt><tt>E</tt></dt>
<dd>Specifies that the target lays out data in big-endian form. That is, the
@@ -4690,6 +4689,7 @@ cause these bits to be set: <tt>0xFF1F</tt>.</p>
llvm.part.set(0xFFFF, 0, Y, 7, 4) -&gt; 0x0060
llvm.part.set(0xFFFF, 0, Y, 8, 3) -&gt; 0x00F0
llvm.part.set(0xFFFF, 0, Y, 3, 8) -&gt; 0xFE07
+</pre>
</div>
<!-- ======================================================================= -->