diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-10-28 01:20:42 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-10-28 01:20:42 +0100 |
commit | d78aa55cc9489d582a46e19478b0438d7382423a (patch) | |
tree | 6f9913b7541fad96286adcce195a648eab93c1da /gcc/doc/invoke.texi | |
parent | 98f61f572fa3d6a3efe1f971908560ecd399d131 (diff) | |
download | gcc-d78aa55cc9489d582a46e19478b0438d7382423a.zip gcc-d78aa55cc9489d582a46e19478b0438d7382423a.tar.gz gcc-d78aa55cc9489d582a46e19478b0438d7382423a.tar.bz2 |
c-tree.texi, [...]: Put punctuation outside quotes.
* doc/c-tree.texi, doc/cpp.texi, doc/implement-c.texi,
doc/invoke.texi, doc/md.texi, doc/passes.texi, doc/tm.texi: Put
punctuation outside quotes.
From-SVN: r89724
Diffstat (limited to 'gcc/doc/invoke.texi')
-rw-r--r-- | gcc/doc/invoke.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ceeae22..c08afdf 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -3896,8 +3896,8 @@ sequence. For C source files, this is the compiler proper and assembler # as 0.00 0.01 @end smallexample -The first number on each line is the ``user time,'' that is time spent -executing the program itself. The second number is ``system time,'' +The first number on each line is the ``user time'', that is time spent +executing the program itself. The second number is ``system time'', time spent executing operating system routines on behalf of the program. Both numbers are in seconds. @@ -10760,11 +10760,11 @@ to the GNU linker for 32-bit PowerPC systems as well. On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr callee, L42'', plus a ``branch island'' (glue code). The two target -addresses represent the callee and the ``branch island.'' The +addresses represent the callee and the ``branch island''. The Darwin/PPC linker will prefer the first address and generate a ``bl callee'' if the PPC ``bl'' instruction will reach the callee directly; otherwise, the linker will generate ``bl L42'' to call the ``branch -island.'' The ``branch island'' is appended to the body of the +island''. The ``branch island'' is appended to the body of the calling function; it computes the full 32-bit address of the callee and jumps to it. |