aboutsummaryrefslogtreecommitdiff
path: root/projects/Stacker/lib/compiler/README
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-17 02:18:44 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-17 02:18:44 +0000
commitd203342a597bff2bc896cb31b7ea8dcd4e45a425 (patch)
tree94158de0997f4ddd009fa98f593f042f2baa334d /projects/Stacker/lib/compiler/README
parent67bb0796ddc3e6f93de80519aa16fb661f84d1e9 (diff)
For PR1074:
Remove the projects/Stacker directory. LLVM is now free of dependency on llvm-gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33278 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/Stacker/lib/compiler/README')
-rw-r--r--projects/Stacker/lib/compiler/README20
1 files changed, 0 insertions, 20 deletions
diff --git a/projects/Stacker/lib/compiler/README b/projects/Stacker/lib/compiler/README
deleted file mode 100644
index 5f13cbb52f..0000000000
--- a/projects/Stacker/lib/compiler/README
+++ /dev/null
@@ -1,20 +0,0 @@
-This directory contains a sample language front end for LLVM.
-
-It is a *very* simple/crude implementation of FORTH. It has many
-deficiencies but provides enough basics to give you an idea of
-what programming a new language front end for LLVM looks like.
-
-To keep things simple, Stacker has the following limitations:
-1. Only a single, global stack is manipulated.
-2. There is no interpretation, everything is compiled.
-3. There's no type/bounds checking .. you're on your own.
-4. There's no floating point support.
-5. Only stdin can be read. Only stdout can be written. No other
- file I/O is supported.
-
-As such, this isn't a very useful language for anything other than
-the most trivial of programs. It is, however, a good learning tool
-(for both the author and the student).
-
-Reid Spencer
-16 November 2003