aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-12-13 21:42:16 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-12-13 21:42:16 +0000
commitf7d4f10a0dbf89595e18030af8de6479fcb299c7 (patch)
tree9e0849743b77c462c9f443d6802690e9706268bd
parent9d975476804f321ad2ff81520ca025e1034e2136 (diff)
downloadexternal_llvm-f7d4f10a0dbf89595e18030af8de6479fcb299c7.zip
external_llvm-f7d4f10a0dbf89595e18030af8de6479fcb299c7.tar.gz
external_llvm-f7d4f10a0dbf89595e18030af8de6479fcb299c7.tar.bz2
Minor cleanups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18914 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/llee/README.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llee/README.txt b/tools/llee/README.txt
index ac9b01b..9164c40 100644
--- a/tools/llee/README.txt
+++ b/tools/llee/README.txt
@@ -1,12 +1,12 @@
LLEE: (LL)VM (E)xecution (E)nvironment
This tool presents a virtual execution environment for LLVM programs. By
-preloading a shared object which defines a custom execve() functions, we can
+preloading a shared object which defines a custom execve() function, we can
execute bytecode files with the JIT directly, without the user ever thinking
about it.
Thus, a user can freely run any program, native or LLVM bytecode, transparently,
and without even being aware of it.
-To use LLEE, run `./llee <native_program>', a good choice is a shell. Anything
+To use LLEE, run `llee <native_program>'; a good choice is a shell. Anything
started within that program will be affected by the execve() replacement.