Minor cleanups.
This commit is contained in:
parent
f7b79b82cf
commit
87b3363764
8
c.texi
8
c.texi
|
@ -3438,8 +3438,8 @@ combined in any order. Thus, given four functions that return
|
|||
@noindent
|
||||
may add up the results in any order.
|
||||
|
||||
By contrast, arithmetic on signed integers, with overflow significant,
|
||||
is not really associative (@pxref{Integer Overflow}). Thus, the
|
||||
By contrast, arithmetic on signed integers, in which overflow is significant,
|
||||
is not always associative (@pxref{Integer Overflow}). Thus, the
|
||||
additions must be done in the order specified, obeying parentheses and
|
||||
left-association. That means computing @code{(foo () + bar ())} and
|
||||
@code{(baz () + quux ())} first (in either order), then adding the
|
||||
|
@ -9797,7 +9797,7 @@ the compiled code for @code{null_left} must read @code{a->left}
|
|||
again from memory when executing the second assignment statement.
|
||||
|
||||
We can enable optimization, so that it does not need to read
|
||||
@code{a->left} again, by writing @code{null_left} this in a less
|
||||
@code{a->left} again, by writing @code{null_left} in a less
|
||||
obvious way.
|
||||
|
||||
@example
|
||||
|
@ -12197,7 +12197,7 @@ Normally we don't run any of these commands directly. Instead we
|
|||
write a set of @dfn{make rules} for the program, then use the
|
||||
@command{make} program to recompile only the source files that need to
|
||||
be recompiled, by following those rules. @xref{Top, The GNU Make
|
||||
Mamual, , Make, The GNU Make Manual}).
|
||||
Mamual, , Make, The GNU Make Manual}.
|
||||
|
||||
@node Directing Compilation
|
||||
@chapter Directing Compilation
|
||||
|
|
Loading…
Reference in New Issue