--- gcc/cpp.texinfo 2018/04/24 16:39:15 1.1.1.3 +++ gcc/cpp.texinfo 2018/04/24 16:48:27 1.1.1.4 @@ -1123,7 +1123,7 @@ a = (b & c + sizeof (int) - 1) / sizeof @noindent which does not do what is intended. The operator-precedence rules of -C make it equivalent to this: +C make it equivalent to this: @example a = (b & (c + sizeof (int) - 1)) / sizeof (int);