diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-12-15 03:03:37 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-12-15 03:03:37 +0000 |
commit | 53ec77972e5d1ffb66765b5376318f8847e00229 (patch) | |
tree | b9ee4c8f37273b757c34360046577a4ff27ba2a3 /llvm/tools/llvmc | |
parent | 852c486946e70bd0efaea750dcb680b6bc151a6d (diff) | |
download | bcm5719-llvm-53ec77972e5d1ffb66765b5376318f8847e00229.tar.gz bcm5719-llvm-53ec77972e5d1ffb66765b5376318f8847e00229.zip |
Small documentation update.
llvm-svn: 91401
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/doc/LLVMC-Reference.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/tools/llvmc/doc/LLVMC-Reference.rst b/llvm/tools/llvmc/doc/LLVMC-Reference.rst index 4cf2a5a82e4..789fc09a493 100644 --- a/llvm/tools/llvmc/doc/LLVMC-Reference.rst +++ b/llvm/tools/llvmc/doc/LLVMC-Reference.rst @@ -360,10 +360,11 @@ separate option groups syntactically. and ``required`` properties. - ``init`` - this option has a default value, either a string (if it is a - parameter), or a boolean (if it is a switch; boolean constants are called - ``true`` and ``false``). List options can't have this attribute. Usage - examples: ``(switch_option "foo", (init true))``; ``(prefix_option "bar", - (init "baz"))``. + parameter), or a boolean (if it is a switch; as in C++, boolean constants + are called ``true`` and ``false``). List options can't have ``init`` + attribute. + Usage examples: ``(switch_option "foo", (init true))``; ``(prefix_option + "bar", (init "baz"))``. - ``extern`` - this option is defined in some other plugin, see `below`__. |