diff options
Diffstat (limited to 'src/intel/compiler/brw_inst.h')
-rw-r--r-- | src/intel/compiler/brw_inst.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_inst.h b/src/intel/compiler/brw_inst.h index eacc0a024a7..e9dad38f699 100644 --- a/src/intel/compiler/brw_inst.h +++ b/src/intel/compiler/brw_inst.h @@ -669,7 +669,9 @@ static inline enum brw_reg_type \ brw_inst_##reg##_type(const struct gen_device_info *devinfo, \ const brw_inst *inst) \ { \ - unsigned file = brw_inst_##reg##_reg_file(devinfo, inst); \ + unsigned file = __builtin_strcmp("dst", #reg) == 0 ? \ + BRW_GENERAL_REGISTER_FILE : \ + brw_inst_##reg##_reg_file(devinfo, inst); \ unsigned hw_type = brw_inst_##reg##_reg_hw_type(devinfo, inst); \ return brw_hw_type_to_reg_type(devinfo, (enum brw_reg_file)file, hw_type); \ } |