[llvm-commits] CVS: llvm/tools/lli/lli.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Dec 25 23:08:01 PST 2003


Changes in directory llvm/tools/lli:

lli.cpp updated: 1.36 -> 1.37

---
Log message:

update comment


---
Diffs of the changes:  (+3 -6)

Index: llvm/tools/lli/lli.cpp
diff -u llvm/tools/lli/lli.cpp:1.36 llvm/tools/lli/lli.cpp:1.37
--- llvm/tools/lli/lli.cpp:1.36	Thu Dec 11 18:47:19 2003
+++ llvm/tools/lli/lli.cpp	Thu Dec 25 23:07:35 2003
@@ -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.
 //
 //===----------------------------------------------------------------------===//
 





More information about the llvm-commits mailing list