diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-01 20:47:22 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-01 20:47:22 +0000 |
commit | 1f92301a7dc8a0670b8bb625343d0956cd3c0d8a (patch) | |
tree | b5d252fee1e28c27a2d45b637f238c8279aba6d1 | |
parent | 11d45b63a2b865c10ccde9a3439e7fbe143a6830 (diff) |
Update table to llvm.css standards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17409 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/Stacker.html | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/docs/Stacker.html b/docs/Stacker.html index 5fb5fe39d7..04b796b112 100644 --- a/docs/Stacker.html +++ b/docs/Stacker.html @@ -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 @@ using the following construction:</p> </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 @@ using the following construction:</p> <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 @@ using the following construction:</p> 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 @@ using the following construction:</p> <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 @@ using the following construction:</p> 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 @@ using the following construction:</p> 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 @@ using the following construction:</p> 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> |