diff --git a/docs/CommandGuide/index.html b/docs/CommandGuide/index.html
index 30d0486f456..baab3ed8312 100644
--- a/docs/CommandGuide/index.html
+++ b/docs/CommandGuide/index.html
@@ -32,40 +32,46 @@ options) arguments to the tool you are interested in.
-- llvm-as -
+
- llvm-as -
assemble a human-readable .ll file into bytecode
-- llvm-dis -
+
- llvm-dis -
disassemble a bytecode file into a human-readable .ll file
-- opt -
+
- opt -
run a series of LLVM-to-LLVM optimizations on a bytecode file
-- llc -
+
- llc -
generate native machine code for a bytecode file
-- lli -
+
- lli -
directly run a program compiled to bytecode using a JIT compiler or
interpreter
-- llvm-link -
+
- llvm-link -
link several bytecode files into one
-- analyze -
+
- analyze -
run LLVM analyses on a bytecode file and print the results
-- llvm-ar -
+
- llvm-ar -
archive bytecode files
-- llvm-ranlib -
+
- llvm-ranlib -
create an index for archives made with llvm-ar
-- llvm-nm -
+
- llvm-nm -
print out the names and types of symbols in a bytecode file
-- llvm-prof -
+
- llvm-prof -
format raw `llvmprof.out' data into a human-readable report
+- llvmc -
+ generic and configurable compiler driver
+
+- llvm-ld -
+ general purpose linker with loadable runtime optimization support
+
@@ -79,19 +85,19 @@ options) arguments to the tool you are interested in.
-- llvmgcc -
+
- llvmgcc -
GCC-based C front-end for LLVM
-
- llvmg++ -
+
- llvmg++ -
GCC-based C++ front-end for LLVM
-- gccas -
+
- gccas -
compile-time optimizer used by llvm-g++ and llvm-gcc
-- gccld -
+
- gccld -
linker and link-time optimizer used by llvm-g++ and llvm-gcc
-- stkrc -
+
- stkrc -
front-end compiler for the Stacker
language
@@ -110,13 +116,13 @@ options) arguments to the tool you are interested in.