Example:
x = x + 3; x = x / 3;
x = x + 3;
x = x / 3;
After the quick fix is applied the result looks like:
x += 3; x /= 3;
x += 3;
x /= 3;