[llvm-commits] [llvm] r148985 - in /llvm/trunk: bindings/ocaml/llvm/META.llvm.in docs/GettingStarted.html docs/GettingStartedVS.html docs/doxygen.header docs/doxygen.intro lib/Support/CommandLine.cpp llvm.spec.in

Jim Grosbach grosbach at apple.com
Wed Jan 25 14:00:23 PST 2012


Author: grosbach
Date: Wed Jan 25 16:00:23 2012
New Revision: 148985

URL: http://llvm.org/viewvc/llvm-project?rev=148985&view=rev
Log:
Tidy up. s/Low Level Virtual Machine/LLVM/.

LLVM isn't an acronym anymore.

Modified:
    llvm/trunk/bindings/ocaml/llvm/META.llvm.in
    llvm/trunk/docs/GettingStarted.html
    llvm/trunk/docs/GettingStartedVS.html
    llvm/trunk/docs/doxygen.header
    llvm/trunk/docs/doxygen.intro
    llvm/trunk/lib/Support/CommandLine.cpp
    llvm/trunk/llvm.spec.in

Modified: llvm/trunk/bindings/ocaml/llvm/META.llvm.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/llvm/META.llvm.in?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/llvm/META.llvm.in (original)
+++ llvm/trunk/bindings/ocaml/llvm/META.llvm.in Wed Jan 25 16:00:23 2012
@@ -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 = "."

Modified: llvm/trunk/docs/GettingStarted.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStarted.html?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStarted.html (original)
+++ llvm/trunk/docs/GettingStarted.html Wed Jan 25 16:00:23 2012
@@ -82,10 +82,9 @@
 
 <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

Modified: llvm/trunk/docs/GettingStartedVS.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStartedVS.html?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStartedVS.html (original)
+++ llvm/trunk/docs/GettingStartedVS.html Wed Jan 25 16:00:23 2012
@@ -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>
 

Modified: llvm/trunk/docs/doxygen.header
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/doxygen.header?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/docs/doxygen.header (original)
+++ llvm/trunk/docs/doxygen.header Wed Jan 25 16:00:23 2012
@@ -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>

Modified: llvm/trunk/docs/doxygen.intro
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/doxygen.intro?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/docs/doxygen.intro (original)
+++ llvm/trunk/docs/doxygen.intro Wed Jan 25 16:00:23 2012
@@ -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

Modified: llvm/trunk/lib/Support/CommandLine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/CommandLine.cpp?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/lib/Support/CommandLine.cpp (original)
+++ llvm/trunk/lib/Support/CommandLine.cpp Wed Jan 25 16:00:23 2012
@@ -1345,7 +1345,7 @@
 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;

Modified: llvm/trunk/llvm.spec.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/llvm.spec.in?rev=148985&r1=148984&r2=148985&view=diff
==============================================================================
--- llvm/trunk/llvm.spec.in (original)
+++ llvm/trunk/llvm.spec.in Wed Jan 25 16:00:23 2012
@@ -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





More information about the llvm-commits mailing list