i965: Silence 'comparison is always true' warning
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 2 Jul 2014 17:47:54 +0000 (10:47 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Sat, 19 Jul 2014 22:03:57 +0000 (15:03 -0700)
commit22b9641edf91f0da76b758db527d4a3b3b2dff82
treed6bb14a661c99755259ada7ffdb03158341b3752
parent1946612b7d6e802f63f59d1775a2e96c46279b87
i965: Silence 'comparison is always true' warning

The parameter is an int16_t, and we're check that it's value will fit in
16-bits.  Yes, the value that is stored in 16-bits will surely fit in
16-bits.

brw_inst.h: In function 'brw_inst_set_gen6_jump_count':
brw_inst.h:321:66: warning: comparison is always true due to limited range of data type [-Wtype-limits]
brw_inst.h:321:66: warning: comparison is always true due to limited range of data type [-Wtype-limits]

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/brw_inst.h