aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CommandGuide/lli.pod
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2007-07-09 11:24:05 +0000
committerGabor Greif <ggreif@gmail.com>2007-07-09 11:24:05 +0000
commit3bd6e0d9dae8b8c29fd15a52b2c5c9cbeb9d8e78 (patch)
tree0683d350b0bc8287ab71d50c9840d6ba294202ab /docs/CommandGuide/lli.pod
parent751d173e17e6b2cc1e0c41127b28f5f7fd8cb7be (diff)
downloadexternal_llvm-3bd6e0d9dae8b8c29fd15a52b2c5c9cbeb9d8e78.zip
external_llvm-3bd6e0d9dae8b8c29fd15a52b2c5c9cbeb9d8e78.tar.gz
external_llvm-3bd6e0d9dae8b8c29fd15a52b2c5c9cbeb9d8e78.tar.bz2
eliminated all references to 'bytecode' from .pod files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide/lli.pod')
-rw-r--r--docs/CommandGuide/lli.pod12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/CommandGuide/lli.pod b/docs/CommandGuide/lli.pod
index 90f3b04..1db47b7 100644
--- a/docs/CommandGuide/lli.pod
+++ b/docs/CommandGuide/lli.pod
@@ -2,7 +2,7 @@
=head1 NAME
-lli - directly execute programs from LLVM bytecode
+lli - directly execute programs from LLVM bitcode
=head1 SYNOPSIS
@@ -10,13 +10,13 @@ B<lli> [I<options>] [I<filename>] [I<program args>]
=head1 DESCRIPTION
-B<lli> directly executes programs in LLVM bytecode format. It takes a program
-in LLVM bytecode format and executes it using a just-in-time compiler, if one is
+B<lli> directly executes programs in LLVM bitcode format. It takes a program
+in LLVM bitcode format and executes it using a just-in-time compiler, if one is
available for the current architecture, or an interpreter. B<lli> takes all of
the same code generator options as L<llc|llc>, but they are only effective when
B<lli> is using the just-in-time compiler.
-If I<filename> is not specified, then B<lli> reads the LLVM bytecode for the
+If I<filename> is not specified, then B<lli> reads the LLVM bitcode for the
program from standard input.
The optional I<args> specified on the command line are passed to the program as
@@ -42,14 +42,14 @@ standard error.
=item B<-mtriple>=I<target triple>
-Override the target triple specified in the input bytecode file with the
+Override the target triple specified in the input bitcode file with the
specified string. This may result in a crash if you pick an
architecture which is not compatible with the current system.
=item B<-march>=I<arch>
Specify the architecture for which to generate assembly, overriding the target
-encoded in the bytecode file. See the output of B<llc --help> for a list of
+encoded in the bitcode file. See the output of B<llc --help> for a list of
valid architectures. By default this is inferred from the target triple or
autodetected to the current architecture.