[llvm-commits] [llvm] r152111 - /llvm/trunk/docs/LangRef.html
Bill Wendling
isanbard at gmail.com
Tue Mar 6 01:17:04 PST 2012
Author: void
Date: Tue Mar 6 03:17:04 2012
New Revision: 152111
URL: http://llvm.org/viewvc/llvm-project?rev=152111&view=rev
Log:
Fix validation errors.
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=152111&r1=152110&r2=152111&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Tue Mar 6 03:17:04 2012
@@ -3081,36 +3081,44 @@
<tr>
<td>1</td>
<td align="left">
- <dt><b>Error</b></dt>
- <dd>Emits an error if two values disagree. It is an error to have an ID
- with both an Error and a Warning behavior.</dd>
+ <dl>
+ <dt><b>Error</b></dt>
+ <dd>Emits an error if two values disagree. It is an error to have an ID
+ with both an Error and a Warning behavior.</dd>
+ </dl>
</td>
</tr>
<tr>
<td>2</td>
<td align="left">
- <dt><b>Warning</b></dt>
- <dd>Emits a warning if two values disagree.</dd>
+ <dl>
+ <dt><b>Warning</b></dt>
+ <dd>Emits a warning if two values disagree.</dd>
+ </dl>
</td>
</tr>
<tr>
<td>3</td>
<td align="left">
- <dt><b>Require</b></dt>
- <dd>Emits an error when the specified value is not present or doesn't
- have the specified value. It is an error for two (or more)
- <tt>llvm.module.flags</tt> with the same ID to have the Require
- behavior but different values. There may be multiple Require flags
- per ID.</dd>
+ <dl>
+ <dt><b>Require</b></dt>
+ <dd>Emits an error when the specified value is not present or doesn't
+ have the specified value. It is an error for two (or more)
+ <tt>llvm.module.flags</tt> with the same ID to have the Require
+ behavior but different values. There may be multiple Require flags
+ per ID.</dd>
+ </dl>
</td>
</tr>
<tr>
<td>4</td>
<td align="left">
- <dt><b>Override</b></dt>
- <dd>Uses the specified value if the two values disagree. It is an error
- for two (or more) <tt>llvm.module.flags</tt> with the same ID to
- have the Override behavior but different values.</dd>
+ <dl>
+ <dt><b>Override</b></dt>
+ <dd>Uses the specified value if the two values disagree. It is an
+ error for two (or more) <tt>llvm.module.flags</tt> with the same
+ ID to have the Override behavior but different values.</dd>
+ </dl>
</td>
</tr>
</tbody>
@@ -3176,7 +3184,7 @@
<table border="1" cellspacing="0" cellpadding="4">
<tbody>
<tr>
- <th width="30%">Key</th>
+ <th>Key</th>
<th>Value</th>
</tr>
<tr>
More information about the llvm-commits
mailing list