From 090fcc185375a0e7df8515b562b21122fc87b9e3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 7 Oct 2003 19:46:37 +0000 Subject: [PATCH] Add pointer to LLC for code generator options. a bunch of stuff which should be git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8932 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandGuide/lli.html | 45 +++++++++----------------------------- 1 file changed, 10 insertions(+), 35 deletions(-) diff --git a/docs/CommandGuide/lli.html b/docs/CommandGuide/lli.html index 2b504472be6..dd6119bc7e3 100644 --- a/docs/CommandGuide/lli.html +++ b/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