intel/compiler: Explicitly cast register type in switch
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 29 Mar 2018 18:29:09 +0000 (11:29 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 6 Apr 2018 22:22:10 +0000 (15:22 -0700)
commit81ed629b385af62bbac2d7975986ea7ad4ed2d1a
tree58d7cc9338ddb8790ff9378be6a7f6569a4b2fac
parent39240926cd45519f35a6fa576c387f727b057aa1
intel/compiler: Explicitly cast register type in switch

brw_reg::type is "enum brw_reg_type type:4".  For whatever reason, GCC
is treating this as an int instead of an enum.  As a result, it doesn't
detect missing switch cases and it doesn't detect that flow can get out
of the switch.

This silences the warning:

src/intel/compiler/brw_reg.h: In function ‘bool brw_regs_negative_equal(const brw_reg*, const brw_reg*)’:
src/intel/compiler/brw_reg.h:305:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/intel/compiler/brw_reg.h