From: Douglas Gregor
Date: Wed, 3 Jun 2009 18:35:59 +0000 (+0000)
Subject: Add a table of contents to the PCH design document
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=923cb23eabaf800a647dd9466ed68fe5b83c3250;p=clang
Add a table of contents to the PCH design document
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72791 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/PCHInternals.html b/docs/PCHInternals.html
index f1cfeb3673..7c0c1403fa 100644
--- a/docs/PCHInternals.html
+++ b/docs/PCHInternals.html
@@ -16,7 +16,26 @@
view, please see the User's Manual.
-Using precompiled headers with clang-cc
+ Table of Contents
+
+
+Using Precompiled Headers with clang-cc
The low-level Clang compiler, clang-cc, supports two command
line options for generating and using PCH files.
@@ -36,7 +55,7 @@ with the -include-pch option:
$ clang-cc -include-pch test.h.pch test.c -o test.s
-PCH Design Philosophy
+Design Philosophy
Precompiled headers are meant to improve overall compile times for
projects, so the design of precompiled headers is entirely driven by
@@ -86,7 +105,7 @@ for a translation unit is proportional to the amount of code actually
used from the header, rather than being proportional to the size of
the header itself.