summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-08-10 19:18:51 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-08-10 19:18:51 +0000
commit54706d680107a3809985bf1308b198c7b1d0f7f5 (patch)
tree09ecbc95a8f2dedaa938c8e89d2d94222c0a3fb4 /examples
parent26a4ba73d3984645da270921caeabc34834e84e5 (diff)
downloadllvm-54706d680107a3809985bf1308b198c7b1d0f7f5.tar.gz
llvm-54706d680107a3809985bf1308b198c7b1d0f7f5.tar.bz2
llvm-54706d680107a3809985bf1308b198c7b1d0f7f5.tar.xz
Fix a copy & paste error .. correct the description of the program.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/HowToUseJIT/HowToUseJIT.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/HowToUseJIT/HowToUseJIT.cpp b/examples/HowToUseJIT/HowToUseJIT.cpp
index 821f7beec8..16f4657c62 100644
--- a/examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/examples/HowToUseJIT/HowToUseJIT.cpp
@@ -7,10 +7,8 @@
//
//===----------------------------------------------------------------------===//
//
-// This tool provides a single point of access to the LLVM compilation tools.
-// It has many options. To discover the options supported please refer to the
-// tools' manual page (docs/CommandGuide/html/llvmc.html) or run the tool with
-// the --help option.
+// This small program provides an example of how to quickly build a small
+// module with two functions and execute it with the JIT.
//
//===------------------------------------------------------------------------===