Which is the simplest way to check if two integers have same sign? Is there any short bitwise trick to do this?
I would be wary of any bitwise tricks to determine the sign of integers, as then you have to make assumptions about how those numbers are represented internally.
Almost 100% of the time, integers will be stored as two's compliment, but it's not good practice to make assumptions about the internals of a system unless you are using a datatype that guarentees a particular storage format.
In two's compliment, you can just check the last (left-most) bit in the integer to determine if it is negative, so you can compare just these two bits. This would mean that 0 would have the same sign as a positive number though, which is at odds with the sign function implemented in most languages.
Personally, I'd just use the sign function of your chosen language. It is unlikely that there would be any performance issues with a calculation such as this.