diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html
index facc076abd6..eb8d1d0b07c 100644
--- a/docs/GettingStarted.html
+++ b/docs/GettingStarted.html
@@ -1194,7 +1194,9 @@ information is in the Command Guide.
   pre-processing, translation, optimization, assembly, and linking of programs
   all from one command line. llvmc also takes care of processing the
   dependent libraries found in bytecode. This reduces the need to get the
-  traditional -l<name> options right on the command line.
+  traditional -l<name> options right on the command line. Please
+  note that this tool is new in 1.4 and considered experimental. It will be
+  fully supported in 1.5.
 
   llvm-ar
   The archiver produces an archive containing
@@ -1209,6 +1211,14 @@ information is in the Command Guide.
   The disassembler transforms the LLVM bytecode to human readable 
   LLVM assembly.
 
+  llvm-ld
+  llvm-ld is very similar to gccld and provides a general purpose
+  and extensible linker for LLVM. This is the linker invoked by llvmc.
+  It allows optimization modules to be loaded so that language specific
+  optimizations can be applied at link time. Please note that this tool is new
+  in LLVM 1.4 and still considered experimental. It will be fully supported in
+  LLVM 1.5.
+
   llvm-link
   llvm-link, not surprisingly, links multiple LLVM modules into 
   a single program.