mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Tidy up. s/Low Level Virtual Machine/LLVM/.
LLVM isn't an acronym anymore. llvm-svn: 148985
This commit is contained in:
parent
cd34c5aa54
commit
84b2fe36c8
@ -1,6 +1,6 @@
|
|||||||
name = "llvm"
|
name = "llvm"
|
||||||
version = "@PACKAGE_VERSION@"
|
version = "@PACKAGE_VERSION@"
|
||||||
description = "Low Level Virtual Machine OCaml bindings"
|
description = "LLVM OCaml bindings"
|
||||||
archive(byte) = "llvm.cma"
|
archive(byte) = "llvm.cma"
|
||||||
archive(native) = "llvm.cmxa"
|
archive(native) = "llvm.cmxa"
|
||||||
directory = "."
|
directory = "."
|
||||||
|
@ -82,10 +82,9 @@ basic information.</p>
|
|||||||
|
|
||||||
<p>First, LLVM comes in three pieces. The first piece is the LLVM
|
<p>First, LLVM comes in three pieces. The first piece is the LLVM
|
||||||
suite. This contains all of the tools, libraries, and header files
|
suite. This contains all of the tools, libraries, and header files
|
||||||
needed to use the low level virtual machine. It contains an
|
needed to use LLVM. It contains an assembler, disassembler, bitcode
|
||||||
assembler, disassembler, bitcode analyzer and bitcode optimizer. It
|
analyzer and bitcode optimizer. It also contains basic regression tests that
|
||||||
also contains basic regression tests that can be used to test the LLVM
|
can be used to test the LLVM tools and the GCC front end.</p>
|
||||||
tools and the GCC front end.</p>
|
|
||||||
|
|
||||||
<p>The second piece is the GCC front end. This component provides a version of
|
<p>The second piece is the GCC front end. This component provides a version of
|
||||||
GCC that compiles C and C++ code into LLVM bitcode. Currently, the GCC front
|
GCC that compiles C and C++ code into LLVM bitcode. Currently, the GCC front
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
<p>There are many different projects that compose LLVM. The first is the LLVM
|
<p>There are many different projects that compose LLVM. The first is the LLVM
|
||||||
suite. This contains all of the tools, libraries, and header files needed to
|
suite. This contains all of the tools, libraries, and header files needed to
|
||||||
use the low level virtual machine. It contains an assembler, disassembler,
|
use LLVM. It contains an assembler, disassembler,
|
||||||
bitcode analyzer and bitcode optimizer. It also contains a test suite that can
|
bitcode analyzer and bitcode optimizer. It also contains a test suite that can
|
||||||
be used to test the LLVM tools.</p>
|
be used to test the LLVM tools.</p>
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<html><head>
|
<html><head>
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
|
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
|
||||||
<meta name="keywords" content="LLVM,Low Level Virtual Machine,C++,doxygen,API,documentation"/>
|
<meta name="keywords" content="LLVM,Low Level Virtual Machine,C++,doxygen,API,documentation"/>
|
||||||
<meta name="description" content="C++ source code API documentation for the Low Level Virtual Machine (LLVM)."/>
|
<meta name="description" content="C++ source code API documentation for LLVM."/>
|
||||||
<title>LLVM: $title</title>
|
<title>LLVM: $title</title>
|
||||||
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
</head><body>
|
</head><body>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/// @mainpage Low Level Virtual Machine
|
/// @mainpage LLVM
|
||||||
///
|
///
|
||||||
/// @section main_intro Introduction
|
/// @section main_intro Introduction
|
||||||
/// Welcome to the Low Level Virtual Machine (LLVM).
|
/// Welcome to LLVM.
|
||||||
///
|
///
|
||||||
/// This documentation describes the @b internal software that makes
|
/// This documentation describes the @b internal software that makes
|
||||||
/// up LLVM, not the @b external use of LLVM. There are no instructions
|
/// up LLVM, not the @b external use of LLVM. There are no instructions
|
||||||
|
@ -1345,7 +1345,7 @@ class VersionPrinter {
|
|||||||
public:
|
public:
|
||||||
void print() {
|
void print() {
|
||||||
raw_ostream &OS = outs();
|
raw_ostream &OS = outs();
|
||||||
OS << "Low Level Virtual Machine (http://llvm.org/):\n"
|
OS << "LLVM (http://llvm.org/):\n"
|
||||||
<< " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
|
<< " " << PACKAGE_NAME << " version " << PACKAGE_VERSION;
|
||||||
#ifdef LLVM_VERSION_INFO
|
#ifdef LLVM_VERSION_INFO
|
||||||
OS << LLVM_VERSION_INFO;
|
OS << LLVM_VERSION_INFO;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Name: @PACKAGE_NAME@
|
Name: @PACKAGE_NAME@
|
||||||
Version: @PACKAGE_VERSION@
|
Version: @PACKAGE_VERSION@
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Low Level Virtual Machine (An Optimizing Compiler Infrastructure)
|
Summary: LLVM (An Optimizing Compiler Infrastructure)
|
||||||
License: University of Illinois/NCSA Open Source License
|
License: University of Illinois/NCSA Open Source License
|
||||||
Vendor: None (open source)
|
Vendor: None (open source)
|
||||||
Group: Development/Compilers
|
Group: Development/Compilers
|
||||||
|
Loading…
Reference in New Issue
Block a user