Remove some redundant parenthesis; no functional change.

This commit is contained in:
Markus Armbruster 2005-07-23 19:48:35 +00:00
parent 4861f837fb
commit 380b063f9c
41 changed files with 134 additions and 134 deletions

View file

@ -39,7 +39,7 @@ roundintby(int n, int m)
register int r11;
r11 = (m >> 1) + n;
return (r11 / m * m);
return r11 / m * m;
}
int
@ -48,5 +48,5 @@ ldround(double a4, int ac)
int f4;
f4 = ac / 2.0 + a4;
return (f4 / ac * ac);
return f4 / ac * ac;
}