diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-15 02:42:40 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-15 02:42:40 +0000 |
commit | bc39dff6e5a39958b9d363ad9afea2cc86a82c88 (patch) | |
tree | 81263aced1c9f457a9cfa19163411e5da139b123 /llvm/tools/llvmc | |
parent | 41c8ba80de74c45e5ca0987c0f36a27f6e02bb43 (diff) | |
download | bcm5719-llvm-bc39dff6e5a39958b9d363ad9afea2cc86a82c88.tar.gz bcm5719-llvm-bc39dff6e5a39958b9d363ad9afea2cc86a82c88.zip |
Some small documentation fixes.
llvm-svn: 62251
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/doc/LLVMC-Reference.rst | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/llvm/tools/llvmc/doc/LLVMC-Reference.rst b/llvm/tools/llvmc/doc/LLVMC-Reference.rst index e28def74d5e..d70b4a55988 100644 --- a/llvm/tools/llvmc/doc/LLVMC-Reference.rst +++ b/llvm/tools/llvmc/doc/LLVMC-Reference.rst @@ -294,10 +294,11 @@ separate option groups syntactically. - ``required`` - this option is obligatory. - - ``hidden`` - this option should not appear in the ``--help`` - output (but should appear in the ``--help-hidden`` output). + - ``hidden`` - the description of this option will not appear in + the ``--help`` output (but will appear in the ``--help-hidden`` + output). - - ``really_hidden`` - the option should not appear in any help + - ``really_hidden`` - the option will not be mentioned in any help output. - ``extern`` - this option is defined in some other plugin, see below. @@ -307,7 +308,7 @@ External options Sometimes, when linking several plugins together, one plugin needs to access options defined in some other plugin. Because of the way -options are implemented, such options should be marked as +options are implemented, such options must be marked as ``extern``. This is what the ``extern`` option property is for. Example:: @@ -614,13 +615,13 @@ Ghostview_ are installed. There is also a ``--dump-graph`` option that creates a Graphviz source file (``compilation-graph.dot``) in the current directory. -Another useful option is ``--check-graph``. It checks the compilation -graph for common errors like mismatched output/input language names, -multiple default edges and cycles. These checks can't be performed at -compile-time because the plugins can load code dynamically. When -invoked with ``--check-graph``, ``llvmc`` doesn't perform any -compilation tasks and returns the number of encountered errors as its -status code. +Another useful ``llvmc`` option is ``--check-graph``. It checks the +compilation graph for common errors like mismatched output/input +language names, multiple default edges and cycles. These checks can't +be performed at compile-time because the plugins can load code +dynamically. When invoked with ``--check-graph``, ``llvmc`` doesn't +perform any compilation tasks and returns the number of encountered +errors as its status code. .. _Graphviz: http://www.graphviz.org/ .. _Ghostview: http://pages.cs.wisc.edu/~ghost/ |