From 6b6557c5ebcd46cb0586baf00f0c645ddd0232f7 Mon Sep 17 00:00:00 2001
From: Reid Spencer
Date: Mon, 1 Nov 2004 20:47:22 +0000
Subject: [PATCH] Update table to llvm.css standards.
llvm-svn: 17409
---
llvm/docs/Stacker.html | 26 +++++++++++---------------
1 file changed, 11 insertions(+), 15 deletions(-)
diff --git a/llvm/docs/Stacker.html b/llvm/docs/Stacker.html
index 5fb5fe39d71b..04b796b11221 100644
--- a/llvm/docs/Stacker.html
+++ b/llvm/docs/Stacker.html
@@ -4,10 +4,6 @@
Stacker: An Example Of Using LLVM
-
@@ -515,16 +511,16 @@ using the following construction:
-
-
Definition Of Operation Of Built In Words
-
LOGICAL OPERATIONS
-
+
+
Definition Of Operation Of Built In Words
+
LOGICAL OPERATIONS
+
Word
Name
Operation
Description
-
+
<
LT
w1 w2 -- b
@@ -581,7 +577,7 @@ using the following construction:
-- b
The boolean value TRUE (-1) is pushed on to the stack.
-
BITWISE OPERATORS
+
BITWISE OPERATORS
Word
Name
@@ -623,7 +619,7 @@ using the following construction:
are bitwise exclusive OR'd together and pushed back on the stack.
For example, The sequence 1 3 XOR yields 2.
-
ARITHMETIC OPERATORS
+
ARITHMETIC OPERATORS
Word
Name
@@ -704,7 +700,7 @@ using the following construction:
Two values are popped off the stack. The larger value is pushed back
on to the stack.
-
STACK MANIPULATION OPERATORS
+
STACK MANIPULATION OPERATORS
Word
Name
@@ -849,7 +845,7 @@ using the following construction:
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.
-
MEMORY OPERATORS
+
MEMORY OPERATORS
Word
Name
@@ -902,7 +898,7 @@ using the following construction:
pushed back on the stack so this doesn't count as a "use ptr"
in the FREE idiom.
-
CONTROL FLOW OPERATORS
+
CONTROL FLOW OPERATORS
Word
Name
@@ -969,7 +965,7 @@ using the following construction:
the top of stack is decremented to 0 at which the WHILE test fails and control is
transfered to the word after the END.