summaryrefslogtreecommitdiff
path: root/tools/llvm-stub
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2007-07-06 20:28:40 +0000
committerGabor Greif <ggreif@gmail.com>2007-07-06 20:28:40 +0000
commitdb5565a1f549a979c84e559e18863f4c1d8f884f (patch)
treee899442d44084ca03dd071535965f2f282ce07ed /tools/llvm-stub
parent2c194e6bd10b864e72b50c7cd071c5fd9c04282e (diff)
downloadllvm-db5565a1f549a979c84e559e18863f4c1d8f884f.tar.gz
llvm-db5565a1f549a979c84e559e18863f4c1d8f884f.tar.bz2
llvm-db5565a1f549a979c84e559e18863f4c1d8f884f.tar.xz
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/llvm-stub')
-rw-r--r--tools/llvm-stub/llvm-stub.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvm-stub/llvm-stub.c b/tools/llvm-stub/llvm-stub.c
index 10b025633f..809a532277 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