diff options
author | Gabor Greif <ggreif@gmail.com> | 2007-07-06 20:28:40 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2007-07-06 20:28:40 +0000 |
commit | db5565a1f549a979c84e559e18863f4c1d8f884f (patch) | |
tree | e899442d44084ca03dd071535965f2f282ce07ed /tools | |
parent | 2c194e6bd10b864e72b50c7cd071c5fd9c04282e (diff) | |
download | external_llvm-db5565a1f549a979c84e559e18863f4c1d8f884f.zip external_llvm-db5565a1f549a979c84e559e18863f4c1d8f884f.tar.gz external_llvm-db5565a1f549a979c84e559e18863f4c1d8f884f.tar.bz2 |
finishing touches of bytecode -> bitcode changes. also unbreak Windows
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvm-stub/llvm-stub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvm-stub/llvm-stub.c b/tools/llvm-stub/llvm-stub.c index 10b0256..809a532 100644 --- a/tools/llvm-stub/llvm-stub.c +++ b/tools/llvm-stub/llvm-stub.c @@ -1,4 +1,4 @@ -/*===- llvm-stub.c - Stub executable to run llvm bytecode files -----------===// +/*===- llvm-stub.c - Stub executable to run llvm bitcode files -----------===// // // The LLVM Compiler Infrastructure // @@ -8,9 +8,9 @@ //===----------------------------------------------------------------------===// // // This tool is used by the gccld program to enable transparent execution of -// bytecode files by the user. Specifically, gccld outputs two files when asked +// bitcode files by the user. Specifically, gccld outputs two files when asked // to compile a <program> file: -// 1. It outputs the LLVM bytecode file to <program>.bc +// 1. It outputs the LLVM bitcode file to <program>.bc // 2. It outputs a stub executable that runs lli on <program>.bc // // This allows the end user to just say ./<program> and have the JIT executed |