I have seen this macro defined before but never really knew its purpose. Can anyone shed light on this?
|
|
This is a compiler intrinsic used for optimization, typically seen in embedded programming. The only time I have seen it used is in the "default" for a switch statement to assert that the variable has a limited range (for better optimization). Example:
Probably doesn't work with all compilers... |
|||
|
|
|
As an FYI, MSVC has something similar (with a bit more flexibility), the
I'm not sure which version of MSVC this was first supported. |
|||
|
|
|
I've not seen it before, but STFW with Google comes up with this question first, and then some other references. From what it says, it is clearly a hint to the compiler that the code is never executed - so the compiler can do optimization. It could legitimately be regarded as an excuse to put 'assert(0)' in its place -- since the code will never be executed, the assertion will never fire. Of course, if the assertion does fire, then you know you've got a problem. See also the classic paper "Can't Happen or /* NOTREACHED */ or Real Programs Dump Core". Worth a read, even now. |
||||
|
|
|
I've seen things like that before as part of testing. If it is executed, then you know that you have a bug. |
|||
|
|