aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/implement-c.texi
diff options
context:
space:
mode:
authorMartin Sebor <msebor@gcc.gnu.org>2018-04-10 09:49:59 -0600
committerMartin Sebor <msebor@gcc.gnu.org>2018-04-10 09:49:59 -0600
commitdf18c24ad67c41809e0e338a360f9f8c93a5f158 (patch)
tree23a261c0ed172c40b093dfe7e248fd683c2d5965 /gcc/doc/implement-c.texi
parent25949ee33201f2f4f86137b00c3c88fa076d5047 (diff)
downloadgcc-df18c24ad67c41809e0e338a360f9f8c93a5f158.zip
gcc-df18c24ad67c41809e0e338a360f9f8c93a5f158.tar.gz
gcc-df18c24ad67c41809e0e338a360f9f8c93a5f158.tar.bz2
cppopts.texi: Use "side effect" instead of side-effect.
gcc/ChangeLog: * doc/cppopts.texi: Use "side effect" instead of side-effect. * doc/extend.texi: Same. * doc/generic.texi: Same. * doc/implement-c.texi: Same. * doc/invoke.texi: Same. * doc/md.texi: Same. * doc/rtl.texi: Same. * doc/tree-ssa.texi: Same. From-SVN: r259287
Diffstat (limited to 'gcc/doc/implement-c.texi')
-rw-r--r--gcc/doc/implement-c.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/implement-c.texi b/gcc/doc/implement-c.texi
index d633338..90f47d9 100644
--- a/gcc/doc/implement-c.texi
+++ b/gcc/doc/implement-c.texi
@@ -567,14 +567,14 @@ volatile int *src = @var{somevalue};
According to the C standard, such an expression is an rvalue whose type
is the unqualified version of its original type, i.e. @code{int}. Whether
GCC interprets this as a read of the volatile object being pointed to or
-only as a request to evaluate the expression for its side-effects depends
+only as a request to evaluate the expression for its side effects depends
on this type.
If it is a scalar type, or on most targets an aggregate type whose only
member object is of a scalar type, or a union type whose member objects
are of scalar types, the expression is interpreted by GCC as a read of
the volatile object; in the other cases, the expression is only evaluated
-for its side-effects.
+for its side effects.
@end itemize