diff options
-rw-r--r-- | gcc/doc/tm.texi | 14 | ||||
-rw-r--r-- | gcc/doc/tm.texi.in | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index e3325b0..3c9e659 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -6177,13 +6177,13 @@ are the same as to this target hook. @end deftypefn @defmac BRANCH_COST (@var{speed_p}, @var{predictable_p}) -A C expression for the cost of a branch instruction. A value of 1 is the -default; other values are interpreted relative to that. Parameter @var{speed_p} -is true when the branch in question should be optimized for speed. When -it is false, @code{BRANCH_COST} should be returning value optimal for code size -rather then performance considerations. @var{predictable_p} is true for well -predictable branches. On many architectures the @code{BRANCH_COST} can be -reduced then. +A C expression for the cost of a branch instruction. A value of 1 is +the default; other values are interpreted relative to that. Parameter +@var{speed_p} is true when the branch in question should be optimized +for speed. When it is false, @code{BRANCH_COST} should return a value +optimal for code size rather than performance. @var{predictable_p} is +true for well-predicted branches. On many architectures the +@code{BRANCH_COST} can be reduced then. @end defmac Here are additional macros which do not specify precise relative costs, diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index 1a5f040..71d7b46 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -6157,13 +6157,13 @@ are the same as to this target hook. @end deftypefn @defmac BRANCH_COST (@var{speed_p}, @var{predictable_p}) -A C expression for the cost of a branch instruction. A value of 1 is the -default; other values are interpreted relative to that. Parameter @var{speed_p} -is true when the branch in question should be optimized for speed. When -it is false, @code{BRANCH_COST} should be returning value optimal for code size -rather then performance considerations. @var{predictable_p} is true for well -predictable branches. On many architectures the @code{BRANCH_COST} can be -reduced then. +A C expression for the cost of a branch instruction. A value of 1 is +the default; other values are interpreted relative to that. Parameter +@var{speed_p} is true when the branch in question should be optimized +for speed. When it is false, @code{BRANCH_COST} should return a value +optimal for code size rather than performance. @var{predictable_p} is +true for well-predicted branches. On many architectures the +@code{BRANCH_COST} can be reduced then. @end defmac Here are additional macros which do not specify precise relative costs, |