update comment
authorChris Lattner <sabre@nondot.org>
Fri, 26 Dec 2003 05:07:35 +0000 (05:07 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 26 Dec 2003 05:07:35 +0000 (05:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10607 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lli/lli.cpp

index 0547c433cb9f1cc6394ff27a97c8f438e4f1bb5e..0f65d9d9b8598c4a1436798816a7948de3547cfc 100644 (file)
@@ -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.
 //
 //===----------------------------------------------------------------------===//