Answer: no, not necessarily. Despite the existence of operator precedence, i.e. the fact that the following
X := 3 + 4 * 5;
results in 23 and not in 35, the order of operands can still have an effect.
In my BigInteger code, I discovered an odd error, that only happened in some very rare cases, and only in PUREPASCAL code, i.e. code that did not use assembler, and only in 64 bit. It took me several hours to find out that this was the problematic expression:
Value := NormDividend[I + J]...