This is the second example of wikipedia SIGFPE page.
#include <limits.h>
int main(void)
{
volatile int x=INT_MIN;
volatile int y=-1;
x=x/y;
return 0;
}
It is inverting the sign to positive of INT_MIN. How can it be FPE?
|
This is the second example of wikipedia SIGFPE page.
It is inverting the sign to positive of INT_MIN. How can it be FPE? |
||||
|
|
|
The Wikipedia article answers:
|
||||
|
|
|
Did you read the wiki page? It maybe an FPE but it's not a floating point exception.
|
|||
|
|
|
As that page you link to points out, "although SIGFPE does not necessarily involve floating-point arithmetic, there is no way to change its name without breaking backward compatibility". The reason you're getting the signal is because of the way two's complement numbers work. The range for a sixteen bit two's complement number (for example) is In other words, the 65,536 possible values are mapped to that range. If you try to negate Ths is the case for all two's complement numbers: eight bits gives you In all those cases, Interestingly, the other two encoding schemes allowed for by ISO C (one's complement and sign/magnitude) have a direct one-to-one mapping between positive and negative values). Equally interesting, almost no-one uses them :-) |
||||
|
|