From 12e2a142c73119a8a6216ec6319a9867c0ea4ccc Mon Sep 17 00:00:00 2001 From: phython Date: Sat, 5 Mar 2005 19:56:31 +0000 Subject: 2005-03-05 James A. Morrison * doc/c-tree.texi: Wrap comments in @r{}. * doc/cpp.texi: Likewise. * doc/cppinternals.texi: Likewise. * doc/extend.texi: Likewise. * doc/md.texi: Likewise. * doc/objc.texi: Likewise. * doc/sourcebuild.texi: Likewise. * doc/tm.texi: Likewise. * doc/tree-ssa.texi git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95939 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 12 ++++++++++++ gcc/doc/c-tree.texi | 2 +- gcc/doc/cpp.texi | 10 +++++----- gcc/doc/cppinternals.texi | 4 ++-- gcc/doc/extend.texi | 16 ++++++++-------- gcc/doc/md.texi | 4 ++-- gcc/doc/objc.texi | 4 ++-- gcc/doc/sourcebuild.texi | 4 ++-- gcc/doc/tm.texi | 2 +- gcc/doc/tree-ssa.texi | 16 ++++++++-------- 10 files changed, 43 insertions(+), 31 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b04f74952c4..6e8b77fc024 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,15 @@ +2005-03-05 James A. Morrison + + * doc/c-tree.texi: Wrap comments in @r{}. + * doc/cpp.texi: Likewise. + * doc/cppinternals.texi: Likewise. + * doc/extend.texi: Likewise. + * doc/md.texi: Likewise. + * doc/objc.texi: Likewise. + * doc/sourcebuild.texi: Likewise. + * doc/tm.texi: Likewise. + * doc/tree-ssa.texi + 2005-03-05 Kazu Hirata * predict.c (apply_return_prediction): Standardize PHI chain diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi index e0881cf2d80..a6033f16256 100644 --- a/gcc/doc/c-tree.texi +++ b/gcc/doc/c-tree.texi @@ -1363,7 +1363,7 @@ void process_stmt (stmt) @{ case IF_STMT: process_stmt (THEN_CLAUSE (stmt)); - /* More processing here. */ + /* @r{More processing here.} */ break; @dots{} diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi index ea38218b8c1..e6a7dcd06eb 100644 --- a/gcc/doc/cpp.texi +++ b/gcc/doc/cpp.texi @@ -1318,7 +1318,7 @@ name, and you wish to use the function sometimes. @smallexample extern void foo(void); -#define foo() /* optimized inline version */ +#define foo() /* @r{optimized inline version} */ @dots{} foo(); funcptr = foo; @@ -2211,7 +2211,7 @@ These definitions are effectively the same: @smallexample #define FOUR (2 + 2) #define FOUR (2 + 2) -#define FOUR (2 /* two */ + 2) +#define FOUR (2 /* @r{two} */ + 2) @end smallexample @noindent but these are not: @@ -3538,8 +3538,8 @@ require matching quotes. For example: @smallexample #define m This macro's fine and has an unmatched quote "/* This is not a comment. */ -/* This is a comment. The following #include directive - is ill-formed. */ +/* @r{This is a comment. The following #include directive + is ill-formed.} */ #include > 16; diff --git a/gcc/doc/objc.texi b/gcc/doc/objc.texi index 481b51c09b8..795e281f726 100644 --- a/gcc/doc/objc.texi +++ b/gcc/doc/objc.texi @@ -56,7 +56,7 @@ FileStream *Stderr = nil; Stderr = [[FileStream new] initWithFd:2]; @} -/* Other methods here */ +/* @r{Other methods here} */ @@end @end smallexample @@ -84,7 +84,7 @@ method instead of @code{+initialize}: Stderr = [[FileStream new] initWithFd:2]; @} -/* Other methods here */ +/* @r{Other methods here} */ @@end @end smallexample diff --git a/gcc/doc/sourcebuild.texi b/gcc/doc/sourcebuild.texi index f4927e80382..edb61b13f26 100644 --- a/gcc/doc/sourcebuild.texi +++ b/gcc/doc/sourcebuild.texi @@ -1321,8 +1321,8 @@ kind. A command @code{branch(end)} or @code{returns(end)} marks the end of a range without starting a new one. For example: @smallexample -if (i > 10 && j > i && j < 20) /* branch(27 50 75) */ - /* branch(end) */ +if (i > 10 && j > i && j < 20) /* @r{branch(27 50 75)} */ + /* @r{branch(end)} */ foo (i, j); @end smallexample diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 625af4b6278..81b664e1c9a 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -849,7 +849,7 @@ checking the state of the option (documentation is elided for brevity). @smallexample [chip.c] -char *chip_alu = ""; /* Specify default here. */ +char *chip_alu = ""; /* @r{Specify default here.} */ [chip.h] extern char *chip_alu; diff --git a/gcc/doc/tree-ssa.texi b/gcc/doc/tree-ssa.texi index cef4212c05d..6996e834fea 100644 --- a/gcc/doc/tree-ssa.texi +++ b/gcc/doc/tree-ssa.texi @@ -938,14 +938,14 @@ tree FOR_EACH_SSA_TREE_OPERAND @file{tree-ssa-operands.h}: @smallexample -#define SSA_OP_USE 0x01 /* Real USE operands. */ -#define SSA_OP_DEF 0x02 /* Real DEF operands. */ -#define SSA_OP_VUSE 0x04 /* VUSE operands. */ -#define SSA_OP_VMAYUSE 0x08 /* USE portion of V_MAY_DEFS. */ -#define SSA_OP_VMAYDEF 0x10 /* DEF portion of V_MAY_DEFS. */ -#define SSA_OP_VMUSTDEF 0x20 /* V_MUST_DEF definitions. */ - -/* These are commonly grouped operand flags. */ +#define SSA_OP_USE 0x01 /* @r{Real USE operands.} */ +#define SSA_OP_DEF 0x02 /* @r{Real DEF operands.} */ +#define SSA_OP_VUSE 0x04 /* @r{VUSE operands.} */ +#define SSA_OP_VMAYUSE 0x08 /* @r{USE portion of V_MAY_DEFS.} */ +#define SSA_OP_VMAYDEF 0x10 /* @r{DEF portion of V_MAY_DEFS.} */ +#define SSA_OP_VMUSTDEF 0x20 /* @r{V_MUST_DEF definitions.} */ + +/* @r{These are commonly grouped operand flags.} */ #define SSA_OP_VIRTUAL_USES (SSA_OP_VUSE | SSA_OP_VMAYUSE) #define SSA_OP_VIRTUAL_DEFS (SSA_OP_VMAYDEF | SSA_OP_VMUSTDEF) #define SSA_OP_ALL_USES (SSA_OP_VIRTUAL_USES | SSA_OP_USE) -- cgit v1.2.1