From 869d55fb5ccad3efeec2bd56f532e7a6eece97de Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 9 Apr 2011 02:13:48 +0000 Subject: [PATCH] docs: Fix some in-package URLs. (eg. trim http://llvm.org/docs/foo -> foo) llvm-svn: 129182 --- docs/GoldPlugin.html | 4 ++-- docs/WritingAnLLVMBackend.html | 18 +++++++++--------- docs/index.html | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/GoldPlugin.html b/docs/GoldPlugin.html index 7c44f45ee67..051d8a49433 100644 --- a/docs/GoldPlugin.html +++ b/docs/GoldPlugin.html @@ -33,7 +33,7 @@ project.

The LLVM gold plugin implements the gold plugin interface on top of -libLTO. +libLTO. The same plugin can also be used by other tools such as ar and nm. @@ -145,7 +145,7 @@ $ llvm-gcc -use-gold-plugin a.a b.o -o main # <-- link with LLVMgold plugin

Gold informs the plugin that foo3 is never referenced outside the IR, leading LLVM to delete that function. However, unlike in the - libLTO + libLTO example gold does not currently eliminate foo4.

diff --git a/docs/WritingAnLLVMBackend.html b/docs/WritingAnLLVMBackend.html index d5422005b99..4798cdfc350 100644 --- a/docs/WritingAnLLVMBackend.html +++ b/docs/WritingAnLLVMBackend.html @@ -117,10 +117,10 @@ These essential documents must be read before reading this document:

@@ -230,7 +230,7 @@ that the class will need and which components will need to be subclassed. To actually create your compiler backend, you need to create and modify a few files. The absolute minimum is discussed here. But to actually use the LLVM target-independent code generator, you must perform the steps described in -the LLVM +the LLVM Target-Independent Code Generator document.

@@ -896,7 +896,7 @@ namespace SP { // Register class instances
@@ -1103,7 +1103,7 @@ The fifth parameter is a string that is used by the assembly printer and can be left as an empty string until the assembly printer interface is implemented. The sixth and final parameter is the pattern used to match the instruction during the SelectionDAG Select Phase described in -(The LLVM +(The LLVM Target-Independent Code Generator). This parameter is detailed in the next section, Instruction Selector.

@@ -1285,7 +1285,7 @@ the rd, rs1, and rs2 fields respectively.
@@ -1533,7 +1533,7 @@ selection pass into the queue of passes to run. The LLVM static compiler (llc) is an excellent tool for visualizing the contents of DAGs. To display the SelectionDAG before or after specific processing phases, use the command line options for llc, described -at +at SelectionDAG Instruction Selection Process.

diff --git a/docs/index.html b/docs/index.html index b8649e0b381..f0bd103b343 100644 --- a/docs/index.html +++ b/docs/index.html @@ -75,7 +75,7 @@ LLVM for a custom language, and the facilities LLVM offers in tutorial form.Developer Policy - The LLVM project's policy towards developers and their contributions. -
  • LLVM Command Guide - A reference +
  • LLVM Command Guide - A reference manual for the LLVM command line utilities ("man" pages for LLVM tools).
    Current tools: llvm-ar,