summaryrefslogtreecommitdiff
path: root/docs/PCHInternals.rst
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2016-07-14 15:32:11 +0000
committerAaron Ballman <aaron@aaronballman.com>2016-07-14 15:32:11 +0000
commit042ccf61edb2cdcd1af58646547c2bd215e0080a (patch)
tree66e53fb657338558b545af61cc8c06414a0939b9 /docs/PCHInternals.rst
parentde9868e9455732733e79aa125a02cf622e5d2048 (diff)
downloadclang-042ccf61edb2cdcd1af58646547c2bd215e0080a.tar.gz
Removing a few more :option: tags that we do not have corresponding .. option directives for; these are causing the sphinx bot to fail (http://lab.llvm.org:8011/builders/clang-sphinx-docs/builds/15197/steps/docs-clang-html/logs/stdio).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@275430 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/PCHInternals.rst')
-rw-r--r--docs/PCHInternals.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/PCHInternals.rst b/docs/PCHInternals.rst
index 8f66ddf0e1..b0372cb931 100644
--- a/docs/PCHInternals.rst
+++ b/docs/PCHInternals.rst
@@ -15,7 +15,7 @@ Using Precompiled Headers with ``clang``
The Clang compiler frontend, ``clang -cc1``, supports two command line options
for generating and using PCH files.
-To generate PCH files using ``clang -cc1``, use the option :option:`-emit-pch`:
+To generate PCH files using ``clang -cc1``, use the option `-emit-pch`:
.. code-block:: bash
@@ -24,7 +24,7 @@ To generate PCH files using ``clang -cc1``, use the option :option:`-emit-pch`:
This option is transparently used by ``clang`` when generating PCH files. The
resulting PCH file contains the serialized form of the compiler's internal
representation after it has completed parsing and semantic analysis. The PCH
-file can then be used as a prefix header with the :option:`-include-pch`
+file can then be used as a prefix header with the `-include-pch`
option:
.. code-block:: bash
@@ -84,7 +84,7 @@ With this approach, the cost of using an AST file for a translation unit is
proportional to the amount of code actually used from the AST file, rather than
being proportional to the size of the AST file itself.
-When given the :option:`-print-stats` option, Clang produces statistics
+When given the `-print-stats` option, Clang produces statistics
describing how much of the AST file was actually loaded from disk. For a
simple "Hello, World!" program that includes the Apple ``Cocoa.h`` header
(which is built as a precompiled header), this option illustrates how little of