diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-17 08:22:53 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-17 08:22:53 +0000 |
commit | 2c19433aa66f0992dacd936f52969dc9449fa0a4 (patch) | |
tree | 618f360fa1cdb7fee8c7f84745bc0cb5656e0f13 /gcc/doc/sourcebuild.texi | |
parent | 40fdda5ae1a7579eea754ec18e5fecdd15bb5b0f (diff) | |
download | gcc-2c19433aa66f0992dacd936f52969dc9449fa0a4.tar.gz |
* doc/compat.texi, doc/cpp.texi, doc/cppopts.texi,
doc/extend.texi, doc/install.texi, doc/invoke.texi,
doc/sourcebuild.texi, doc/tm.texi, doc/tree-ssa.texi,
doc/trouble.texi: Use @option around options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87635 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/sourcebuild.texi')
-rw-r--r-- | gcc/doc/sourcebuild.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/doc/sourcebuild.texi b/gcc/doc/sourcebuild.texi index 172ffd1a36e..8314bf65b50 100644 --- a/gcc/doc/sourcebuild.texi +++ b/gcc/doc/sourcebuild.texi @@ -1084,7 +1084,7 @@ Commands to check line counts are processed by default. Commands to check branch percentages and call return percentages are processed if the @command{run-gcov} command has arguments @code{branches} or @code{calls}, respectively. For example, the following specifies -checking both, as well as passing @code{-b} to @command{gcov}: +checking both, as well as passing @option{-b} to @command{gcov}: @smallexample @{ dg-final @{ run-gcov branches calls @{ -b sourcefile @} @} @} @@ -1216,10 +1216,10 @@ where @var{tsti} and @var{alti} are lists of options, with @var{tsti} used by the compiler under test and @var{alti} used by the alternate compiler. For example, with @code{[list [list @{-g -O0@} @{-O3@}] [list @{-fpic@} @{-fPIC -O2@}]]}, -the test is first built with @code{-g -O0} by the compiler under -test and with @code{-O3} by the alternate compiler. The test is -built a second time using @code{-fpic} by the compiler under test -and @code{-fPIC -O2} by the alternate compiler. +the test is first built with @option{-g -O0} by the compiler under +test and with @option{-O3} by the alternate compiler. The test is +built a second time using @option{-fpic} by the compiler under test +and @option{-fPIC -O2} by the alternate compiler. An alternate compiler is specified by defining an environment variable to be the full pathname of an installed compiler; for C |