Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 7a8ca27

Browse files
committed
[docs] Clean up some more llvm-gcc stuff
Some references to llvm-gcc were so crusty that I wasn't sure how to proceed and so I've left them intact. I also slipped in a quick peephole fix to use a :doc: link instead of raw HTML link. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201619 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent f7f33ce commit 7a8ca27

8 files changed

+14
-18
lines changed

docs/CommandGuide/llc.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ End-user Options
4545

4646
Generate code at different optimization levels. These correspond to the
4747
``-O0``, ``-O1``, ``-O2``, and ``-O3`` optimization levels used by
48-
:program:`llvm-gcc` and :program:`clang`.
48+
:program:`clang`.
4949

5050
.. option:: -mtriple=<target triple>
5151

docs/CommandGuide/opt.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ OPTIONS
6565
.. option:: -std-compile-opts
6666

6767
This is short hand for a standard list of *compile time optimization* passes.
68-
This is typically used to optimize the output from the llvm-gcc front end. It
69-
might be useful for other front end compilers as well. To discover the full
70-
set of options available, use the following command:
68+
It might be useful for other front end compilers as well. To discover the
69+
full set of options available, use the following command:
7170

7271
.. code-block:: sh
7372

docs/DeveloperPolicy.rst

+6-9
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,10 @@ features added. Some tips for getting your testcase approved:
212212
directory. The appropriate sub-directory should be selected (see the
213213
:doc:`Testing Guide <TestingGuide>` for details).
214214

215-
* Test cases should be written in `LLVM assembly language <LangRef.html>`_
216-
unless the feature or regression being tested requires another language
217-
(e.g. the bug being fixed or feature being implemented is in the llvm-gcc C++
218-
front-end, in which case it must be written in C++).
215+
* Test cases should be written in :doc:`LLVM assembly language <LangRef>`.
219216

220217
* Test cases, especially for regressions, should be reduced as much as possible,
221-
by `bugpoint <Bugpoint.html>`_ or manually. It is unacceptable to place an
218+
by :doc:`bugpoint <Bugpoint>` or manually. It is unacceptable to place an
222219
entire failing program into ``llvm/test`` as this creates a *time-to-test*
223220
burden on all developers. Please keep them short.
224221

@@ -517,12 +514,12 @@ to move code from (e.g.) libc++ to the LLVM core without concern, but that code
517514
cannot be moved from the LLVM core to libc++ without the copyright owner's
518515
permission.
519516

520-
Note that the LLVM Project does distribute llvm-gcc and dragonegg, **which are
521-
GPL.** This means that anything "linked" into llvm-gcc must itself be compatible
517+
Note that the LLVM Project does distribute dragonegg, **which is
518+
GPL.** This means that anything "linked" into dragonegg must itself be compatible
522519
with the GPL, and must be releasable under the terms of the GPL. This implies
523-
that **any code linked into llvm-gcc and distributed to others may be subject to
520+
that **any code linked into dragonegg and distributed to others may be subject to
524521
the viral aspects of the GPL** (for example, a proprietary code generator linked
525-
into llvm-gcc must be made available under the GPL). This is not a problem for
522+
into dragonegg must be made available under the GPL). This is not a problem for
526523
code already distributed under a more liberal license (like the UIUC license),
527524
and GPL-containing subprojects are kept in separate SVN repositories whose
528525
LICENSE.txt files specifically indicate that they contain GPL code.

docs/GetElementPtr.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ therefore be indexed and requires an index operand. Consider this example:
7777
...
7878
munge(Array);
7979
80-
In this "C" example, the front end compiler (llvm-gcc) will generate three GEP
80+
In this "C" example, the front end compiler (Clang) will generate three GEP
8181
instructions for the three indices through "P" in the assignment statement. The
8282
function argument ``P`` will be the first operand of each of these GEP
8383
instructions. The second operand indexes through that pointer. The third

docs/tutorial/LangImpl7.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ strongly recommend that you use this technique for building SSA form,
237237
unless there is an extremely good reason not to. Using this technique
238238
is:
239239

240-
- Proven and well tested: llvm-gcc and clang both use this technique
240+
- Proven and well tested: clang uses this technique
241241
for local mutable variables. As such, the most common clients of LLVM
242242
are using this to handle a bulk of their variables. You can be sure
243243
that bugs are found fast and fixed early.

docs/tutorial/LangImpl8.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ For example, try adding:
7272
info <../SourceLevelDebugging.html>`_ which is understood by common
7373
debuggers like GDB. Adding support for debug info is fairly
7474
straightforward. The best way to understand it is to compile some
75-
C/C++ code with "``llvm-gcc -g -O0``" and taking a look at what it
75+
C/C++ code with "``clang -g -O0``" and taking a look at what it
7676
produces.
7777
- **exception handling support** - LLVM supports generation of `zero
7878
cost exceptions <../ExceptionHandling.html>`_ which interoperate with

docs/tutorial/OCamlLangImpl7.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ strongly recommend that you use this technique for building SSA form,
237237
unless there is an extremely good reason not to. Using this technique
238238
is:
239239

240-
- Proven and well tested: llvm-gcc and clang both use this technique
240+
- Proven and well tested: clang uses this technique
241241
for local mutable variables. As such, the most common clients of LLVM
242242
are using this to handle a bulk of their variables. You can be sure
243243
that bugs are found fast and fixed early.

docs/tutorial/OCamlLangImpl8.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ For example, try adding:
7272
info <../SourceLevelDebugging.html>`_ which is understood by common
7373
debuggers like GDB. Adding support for debug info is fairly
7474
straightforward. The best way to understand it is to compile some
75-
C/C++ code with "``llvm-gcc -g -O0``" and taking a look at what it
75+
C/C++ code with "``clang -g -O0``" and taking a look at what it
7676
produces.
7777
- **exception handling support** - LLVM supports generation of `zero
7878
cost exceptions <../ExceptionHandling.html>`_ which interoperate with

0 commit comments

Comments
 (0)