Given some code like :
unsigned short val;
//<some unimportant code that sets val>
if(val>65535) val=65535;
How can we disable the "comparison is always false due to limited range of data type" warning from gcc?
This is using GCC 4.1.2, and so doesn't have the #pragma GCC diagnostics
construct.
I can't find a -W option to turn it off either.
I have tried doing a cast of val:
if(((long)val)>65535); val=65535
But it seems GCC is clever enough to still give the warning.
The compiler flags are -Wall, and that is it. No -Wextra.
I don't really want to remove the check - short might be 16-bits on this target, but doesn't mean it has to be. I am happy to write the check a different way though.
I want to turn -Werror on, so this warning has to go.
EDIT 1 Unimportant code not so unimportant:
unsigned short val;
float dbValue; (actually function parameter)
val= ((unsigned short) dbValue) & 0xffff);
if(val>65535) val=65535;
So if size of short changes, we will get overflow, and in anycase the range check becomes pointless anyway, and can be deleted, or more to the point applied to the float value instead.
EDIT 2 Whilst the answers so far have helped improve the code, it would still be useful to know if there is any means to disable this warning in gcc 4.1.2 - which is what the question was.
It seems it can be done in recent releases using -Wno-type-limits
In theory there is no answer to your question: if what you intend to write is a no-op (on the particular architecture being targeted) for all possible values of
val
the code can be reached with, then the compiler can warn that it is a no-op for all…In practice, comparing
(val + 0)
instead ofval
may be enough to let the compiler produce the same code as it did with your original version and at the same time shut up about it.I would recommend you write
I feel that if you were to use it without comment, it makes the intention clearer than any convoluted trick.