Merged in RELEASE_14 changes.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18763 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index 868551d..ef561f6 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -115,8 +115,7 @@
     <ol>
       <li><tt>cd <i>where-you-want-the-C-front-end-to-live</i></tt>
       <li><tt>gunzip --stdout cfrontend.<i>platform</i>.tar.gz | tar -xvf -</tt>
-      <li><b>Sparc and MacOS X Only:</b><br>
-      <tt>cd cfrontend/<i>platform</i><br>
+      <li><tt>cd cfrontend/<i>platform</i><br>
           ./fixheaders</tt>
     </ol></li>
 
@@ -126,7 +125,7 @@
     <ol>
       <li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
       <li><tt>gunzip --stdout llvm-<i>version</i>.tar.gz | tar -xvf -</tt>
-      <li><tt>cd llvm</tt>
+      <li><tt>cd llvm</tt></li>
     </ol></li>
 
     <li>With anonymous CVS access (or use a <a href="#mirror">mirror</a>):
@@ -142,6 +141,32 @@
     </ol></li>
   </ul></li>
 
+  <li>Get the Test Suite Source Code (<em>optional</em>)
+  <ul>
+    <li>With the distributed files:
+    <ol>
+      <li><tt>cd <i>where-you-want-llvm-to-live</i></tt>
+      <li><tt>cd llvm/projects</tt>
+      <li><tt>gunzip --stdout llvm-test-<i>version</i>.tar.gz | tar -xvf -</tt>
+      <li><tt>cd ..</tt></li>
+    </ol></li>
+
+    <li>With anonymous CVS access (or use a <a href="#mirror">mirror</a>):
+    <ol>
+      <li><tt>cd <i>where-you-want-llvm-to-live</i></tt></li>
+      <li><tt>cd llvm/projects</tt>
+      <li><tt>cvs -d
+          :pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm login</tt></li>
+      <li>Hit the return key when prompted for the password.
+      <li><tt>cvs -z3 -d :pserver:anon@llvm-cvs.cs.uiuc.edu:/var/cvs/llvm 
+          co llvm-test</tt></li>
+      <li><tt>cd llvm-test</tt></li>
+      <li><tt>cvs up -P -d</tt></li>
+      <li><tt>cd ..</tt></li>
+    </ol></li>
+  </ul></li>
+
+
   <li>Configure the LLVM Build Environment
   <ol>
     <li>Change directory to where you want to store the LLVM object
@@ -548,8 +573,9 @@
 <p>
 If you have the LLVM distribution, you will need to unpack it before you
 can begin to compile it.  LLVM is distributed as a set of two files: the LLVM
-suite and the LLVM GCC front end compiled for your platform.  Each
-file is a TAR archive that is compressed with the gzip program.
+suite and the LLVM GCC front end compiled for your platform.  There is an
+additional test suite that is optional.  Each file is a TAR archive that is
+compressed with the gzip program.
 </p>
 
 <p> The files are as follows:
@@ -573,7 +599,7 @@
   <dt><tt>cfrontend-1.4.i386-unknown-freebsd5.1.tar.gz</tt></dt>
   <dd>This is the binary release of the GCC front end for FreeBSD/x86.<br/></dd>
 
-  <dt><tt>cfrontend-1.4.powerpc-apple-darwin7.0.0.tar.gz</tt></dt>
+  <dt><tt>cfrontend-1.4.powerpc-apple-darwin7.6.0.tar.gz</tt></dt>
   <dd>This is the binary release of the GCC front end for MacOS X/PPC.<br/></dd>
 </dl>
 
@@ -672,8 +698,7 @@
       -</tt></li>
 </ol>
 
-<p>If you are using Solaris/Sparc or MacOS X/PPC, you will need to fix the
-header files:</p>
+<p>Next, you will need to fix your system header files:</p>
 
 <p><tt>cd cfrontend/<i>platform</i><br>
    ./fixheaders</tt></p>