aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lli
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-26 05:07:35 +0000
committerChris Lattner <sabre@nondot.org>2003-12-26 05:07:35 +0000
commit7efea1dd98cd9e20ef160c838190f5249123f494 (patch)
tree73b2cc8b6a6b79c85e1b85b3b8bb2d4c17d3bc0c /tools/lli
parent843397c2372cf5bd5dbd6d6d305b45eb4454b66b (diff)
downloadexternal_llvm-7efea1dd98cd9e20ef160c838190f5249123f494.zip
external_llvm-7efea1dd98cd9e20ef160c838190f5249123f494.tar.gz
external_llvm-7efea1dd98cd9e20ef160c838190f5249123f494.tar.bz2
update comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/lli.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 0547c43..0f65d9d 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -7,12 +7,9 @@
//
//===----------------------------------------------------------------------===//
//
-// This utility provides a way to execute LLVM bytecode without static
-// compilation. This consists of a very simple and slow (but portable)
-// interpreter, along with capability for system specific dynamic compilers. At
-// runtime, the fastest (stable) execution engine is selected to run the
-// program. This means the JIT compiler for the current platform if it's
-// available.
+// This utility provides a simple wrapper around the LLVM Execution Engines,
+// which allow the direct execution of LLVM programs through a Just-In-Time
+// compiler, or through an intepreter if no JIT is available for this platform.
//
//===----------------------------------------------------------------------===//