[llvm-commits] CVS: llvm/docs/Stacker.html
Reid Spencer
reid at x10sys.com
Mon Nov 1 12:47:33 PST 2004
Changes in directory llvm/docs:
Stacker.html updated: 1.17 -> 1.18
---
Log message:
Update table to llvm.css standards.
---
Diffs of the changes: (+12 -16)
Index: llvm/docs/Stacker.html
diff -u llvm/docs/Stacker.html:1.17 llvm/docs/Stacker.html:1.18
--- llvm/docs/Stacker.html:1.17 Sat Sep 4 15:30:01 2004
+++ llvm/docs/Stacker.html Mon Nov 1 14:47:22 2004
@@ -4,10 +4,6 @@
<head>
<title>Stacker: An Example Of Using LLVM</title>
<link rel="stylesheet" href="llvm.css" type="text/css">
- <style>
- table, tr, td { border: 2px solid gray }
- table { border-collapse: collapse; margin-bottom: 2em }
- </style>
</head>
<body>
@@ -515,16 +511,16 @@
</ol>
</div>
<div class="doc_text" >
- <table class="doc_table">
-<tr class="doc_table"><td colspan="4">Definition Of Operation Of Built In Words</td></tr>
-<tr class="doc_table"><td colspan="4"><b>LOGICAL OPERATIONS</b></td></tr>
-<tr class="doc_table">
+ <table>
+<tr><th colspan="4">Definition Of Operation Of Built In Words</th></tr>
+<tr><th colspan="4"><b>LOGICAL OPERATIONS</b></th></tr>
+<tr>
<td>Word</td>
<td>Name</td>
<td>Operation</td>
<td>Description</td>
</tr>
-<tr class="doc_table">
+<tr>
<td><</td>
<td>LT</td>
<td>w1 w2 -- b</td>
@@ -581,7 +577,7 @@
<td> -- b</td>
<td>The boolean value TRUE (-1) is pushed on to the stack.</td>
</tr>
-<tr><td colspan="4"><b>BITWISE OPERATORS</b></td></tr>
+<tr><th colspan="4"><b>BITWISE OPERATORS</b></th></tr>
<tr>
<td>Word</td>
<td>Name</td>
@@ -623,7 +619,7 @@
are bitwise exclusive OR'd together and pushed back on the stack.
For example, The sequence 1 3 XOR yields 2.</td>
</tr>
-<tr><td colspan="4"><b>ARITHMETIC OPERATORS</b></td></tr>
+<tr><th colspan="4"><b>ARITHMETIC OPERATORS</b></th></tr>
<tr>
<td>Word</td>
<td>Name</td>
@@ -704,7 +700,7 @@
<td>Two values are popped off the stack. The larger value is pushed back
on to the stack.</td>
</tr>
-<tr><td colspan="4"><b>STACK MANIPULATION OPERATORS</b></td></tr>
+<tr><th colspan="4"><b>STACK MANIPULATION OPERATORS</b></th></tr>
<tr>
<td>Word</td>
<td>Name</td>
@@ -849,7 +845,7 @@
how much to rotate. That is, ROLL with n=1 is the same as ROT and
ROLL with n=2 is the same as ROT2.</td>
</tr>
-<tr><td colspan="4"><b>MEMORY OPERATORS</b></td></tr>
+<tr><th colspan="4"><b>MEMORY OPERATORS</b></th></tr>
<tr>
<td>Word</td>
<td>Name</td>
@@ -902,7 +898,7 @@
pushed back on the stack so this doesn't count as a "use ptr"
in the FREE idiom.</td>
</tr>
-<tr><td colspan="4"><b>CONTROL FLOW OPERATORS</b></td></tr>
+<tr><th colspan="4"><b>CONTROL FLOW OPERATORS</b></th></tr>
<tr>
<td>Word</td>
<td>Name</td>
@@ -969,7 +965,7 @@
the top of stack is decremented to 0 at which the WHILE test fails and control is
transfered to the word after the END.</td>
</tr>
-<tr><td colspan="4"><b>INPUT & OUTPUT OPERATORS</b></td></tr>
+<tr><th colspan="4"><b>INPUT & OUTPUT OPERATORS</b></th></tr>
<tr>
<td>Word</td>
<td>Name</td>
@@ -1405,7 +1401,7 @@
<a href="mailto:rspencer at x10sys.com">Reid Spencer</a><br>
<a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2004/09/04 20:30:01 $
+ Last modified: $Date: 2004/11/01 20:47:22 $
</address>
</body>
More information about the llvm-commits
mailing list