diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-01-25 22:00:23 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-01-25 22:00:23 +0000 |
commit | c48d4dc8a9371690f73d2d05d2297f1e1a19c952 (patch) | |
tree | a2924bf7075637d60eb3cf64e45cec4479395c75 | |
parent | 6c76e80753cfc83dc6804fcd5d949c517dfe3434 (diff) |
Tidy up. s/Low Level Virtual Machine/LLVM/.
LLVM isn't an acronym anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148985 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | bindings/ocaml/llvm/META.llvm.in | 2 | ||||
-rw-r--r-- | docs/GettingStarted.html | 7 | ||||
-rw-r--r-- | docs/GettingStartedVS.html | 2 | ||||
-rw-r--r-- | docs/doxygen.header | 2 | ||||
-rw-r--r-- | docs/doxygen.intro | 4 | ||||
-rw-r--r-- | lib/Support/CommandLine.cpp | 2 | ||||
-rw-r--r-- | llvm.spec.in | 2 |
7 files changed, 10 insertions, 11 deletions
diff --git a/bindings/ocaml/llvm/META.llvm.in b/bindings/ocaml/llvm/META.llvm.in index 29e7eb418e..fdb3253823 100644 --- a/bindings/ocaml/llvm/META.llvm.in +++ b/bindings/ocaml/llvm/META.llvm.in @@ -1,6 +1,6 @@ name = "llvm" version = "@PACKAGE_VERSION@" -description = "Low Level Virtual Machine OCaml bindings" +description = "LLVM OCaml bindings" archive(byte) = "llvm.cma" archive(native) = "llvm.cmxa" directory = "." diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index d78344ad0f..06a9a60f35 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -82,10 +82,9 @@ basic information.</p> <p>First, LLVM comes in three pieces. The first piece is the LLVM suite. This contains all of the tools, libraries, and header files -needed to use the low level virtual machine. It contains an -assembler, disassembler, bitcode analyzer and bitcode optimizer. It -also contains basic regression tests that can be used to test the LLVM -tools and the GCC front end.</p> +needed to use LLVM. It contains an assembler, disassembler, bitcode +analyzer and bitcode optimizer. It also contains basic regression tests that +can be used to test the LLVM tools and the GCC front end.</p> <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 diff --git a/docs/GettingStartedVS.html b/docs/GettingStartedVS.html index 8c86ec6863..d7c1efcfea 100644 --- a/docs/GettingStartedVS.html +++ b/docs/GettingStartedVS.html @@ -44,7 +44,7 @@ <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 - 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 be used to test the LLVM tools.</p> diff --git a/docs/doxygen.header b/docs/doxygen.header index a520434d6c..56fb77fafd 100644 --- a/docs/doxygen.header +++ b/docs/doxygen.header @@ -2,7 +2,7 @@ <html><head> <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="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> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head><body> diff --git a/docs/doxygen.intro b/docs/doxygen.intro index 547730cba7..699dadc27e 100644 --- a/docs/doxygen.intro +++ b/docs/doxygen.intro @@ -1,7 +1,7 @@ -/// @mainpage Low Level Virtual Machine +/// @mainpage LLVM /// /// @section main_intro Introduction -/// Welcome to the Low Level Virtual Machine (LLVM). +/// Welcome to LLVM. /// /// This documentation describes the @b internal software that makes /// up LLVM, not the @b external use of LLVM. There are no instructions diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index 5ee0569757..48827aec4c 100644 --- a/lib/Support/CommandLine.cpp +++ b/lib/Support/CommandLine.cpp @@ -1345,7 +1345,7 @@ class VersionPrinter { public: void print() { raw_ostream &OS = outs(); - OS << "Low Level Virtual Machine (http://llvm.org/):\n" + OS << "LLVM (http://llvm.org/):\n" << " " << PACKAGE_NAME << " version " << PACKAGE_VERSION; #ifdef LLVM_VERSION_INFO OS << LLVM_VERSION_INFO; diff --git a/llvm.spec.in b/llvm.spec.in index 9284d65d00..0a3f6e8078 100644 --- a/llvm.spec.in +++ b/llvm.spec.in @@ -1,7 +1,7 @@ Name: @PACKAGE_NAME@ Version: @PACKAGE_VERSION@ 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 Vendor: None (open source) Group: Development/Compilers |