Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.

Commit

Permalink
Tidy up. s/Low Level Virtual Machine/LLVM/.
Browse files Browse the repository at this point in the history
LLVM isn't an acronym anymore.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148985 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Jim Grosbach committed Jan 25, 2012
1 parent 6c76e80 commit c48d4dc
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bindings/ocaml/llvm/META.llvm.in
Original file line number Diff line number Diff line change
@@ -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 = "."
Expand Down
7 changes: 3 additions & 4 deletions docs/GettingStarted.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,9 @@ <h2>

<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
Expand Down
2 changes: 1 addition & 1 deletion docs/GettingStartedVS.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h2>

<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>

Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen.header
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions docs/doxygen.intro
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Support/CommandLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion llvm.spec.in
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c48d4dc

Please sign in to comment.