|
|
|
|
|
by mierle
4784 days ago
|
|
Be careful: "x / 16" won't get converted to "x >> 4" by the compiler if x is a signed int. I lost an argument about this in a code review once. Look at the disassembly for the case that x is and is not signed if you don't believe me. |
|
I think it really depends upon the compiler.