From 352d29cb3bdad619b31f03b581235145b060daac Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 7 Oct 2003 19:46:37 +0000 Subject: Add pointer to LLC for code generator options. a bunch of stuff which should be llvm-svn: 8932 --- llvm/docs/CommandGuide/lli.html | 45 +++++++++-------------------------------- 1 file changed, 10 insertions(+), 35 deletions(-) (limited to 'llvm/docs/CommandGuide') diff --git a/llvm/docs/CommandGuide/lli.html b/llvm/docs/CommandGuide/lli.html index 2b504472be6..dd6119bc7e3 100644 --- a/llvm/docs/CommandGuide/lli.html +++ b/llvm/docs/CommandGuide/lli.html @@ -6,7 +6,7 @@ LLVM: lli tool
-

LLVM: lli tool

+

LLVM: lli tool


@@ -14,56 +14,36 @@ LLVM: lli tool NAME -lli +lli

SYNOPSIS

-lli [options] [filename] [args ...] +lli [options] [filename] [args ...]

DESCRIPTION

-The lli command is the LLVM interpreter. It takes a program in LLVM bytecode -format and executes it using an interpreter or a Just In Time (JIT) compiler. +The lli command is the LLVM interpreter. It takes a program in LLVM +bytecode format and executes it using an interpreter or a Just In Time (JIT) +compiler. lli takes all of the same code generator option as the +llc tool as well.

If filename is not specified, then lli reads its input from standard input.

-The optional arguments specified on the command line are passed to the executed +The optional "args" specified on the command line are passed to the executed program as arguments.

-

-MAIN FUNCTION -

- -The main() function of the bytecode program is where execution starts. It -is passed three arguments: - - - -The first argument to the program is the name of the executed bytecode file -(with the .bc suffix removed).

OPTIONS