In the www gcc-16/porting_to, two lines in comment text on
the example code for -Wunused-variable was changed from
"pre/postincrement used" to "pre/postincrement result used".
Approval there directs that the change should be propagated
back to the texi source the example came from. This is that
propagation.
gcc/Changelog:
* doc/invoke.texi: insert "result" in comment text
int f = 0; // No warning, f used
int g = f = 5;
(void) g;
- int h = 0; // No warning, preincrement used
+ int h = 0; // No warning, preincrement result used
int i = ++h;
(void) i;
- int j = 0; // No warning, postdecrement used
+ int j = 0; // No warning, postdecrement result used
int k = j--;
(void) k;
int l = 0; // No warning, l used