r275430 - 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).
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 14 08:32:11 PDT 2016
Author: aaronballman
Date: Thu Jul 14 10:32:11 2016
New Revision: 275430
URL: http://llvm.org/viewvc/llvm-project?rev=275430&view=rev
Log:
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).
Modified:
cfe/trunk/docs/PCHInternals.rst
Modified: cfe/trunk/docs/PCHInternals.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/PCHInternals.rst?rev=275430&r1=275429&r2=275430&view=diff
==============================================================================
--- cfe/trunk/docs/PCHInternals.rst (original)
+++ cfe/trunk/docs/PCHInternals.rst Thu Jul 14 10:32:11 2016
@@ -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
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
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
More information about the cfe-commits
mailing list