From 6e3b7c28f37295cf2a90fa246a77bfe104257ad1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 14 Aug 2006 20:51:35 +0000 Subject: [PATCH] Fix more validation issues git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29671 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index ca0256d9e05..5910ebc305f 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -1535,10 +1535,10 @@ transitioning from llvm-gcc3 to llvm-gcc4, we include examples for both.

and

-

% lli hello.bc

+

% lli hello.bc

The second examples shows how to invoke the LLVM JIT, lli.

+ href="CommandGuide/html/lli.html">lli.

  • Use the llvm-dis utility to take a look at the LLVM assembly code:

    @@ -1557,10 +1557,11 @@ transitioning from llvm-gcc3 to llvm-gcc4, we include examples for both.
  • Execute the native code program:

    -

    % ./hello.native

  • +

    % ./hello.native

    Note that using llvm-gcc to compile directly to native code (i.e. when the -emit-llvm option is not present) does steps 6/7/8 for you.

    + -- 2.34.1