|
|
|
|
|
by ConceptJunkie
86 days ago
|
|
> The same trick can also be used for the other direction to save a division: > NewValue = OldValue >> 3;
> This is basically the same as > NewValue = OldValue / 8; > RCT does this trick all the time, and even in its OpenRCT2 version, this syntax hasn’t been changed, since compilers won’t do this optimization for you. The author loses a lot of credibility by suggesting the compiler won't replace multiplying or dividing by a factor of 2 with the equivalent bit shift. That's a trivial optimization that's always been done. I'm sure compilers were doing that in the 70s. |
|