diff options
author | Matt Turner <[email protected]> | 2017-06-14 14:49:31 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-10-20 15:00:17 -0700 |
commit | 3b2c868848c12ea772ac818c0833850a2940eb7e (patch) | |
tree | e36f9be20a8ea516569c2794383ed9e2bee1d2f2 /src/intel/compiler/brw_inst.h | |
parent | 281e8b8f278ef23f24b331e03c751fa8d1c5f7c2 (diff) |
i965: Add align1 ternary instruction support to conversion functions
Reviewed-by: Scott D Phillips <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_inst.h')
-rw-r--r-- | src/intel/compiler/brw_inst.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/compiler/brw_inst.h b/src/intel/compiler/brw_inst.h index 0cc1a3e911e..1ddee771640 100644 --- a/src/intel/compiler/brw_inst.h +++ b/src/intel/compiler/brw_inst.h @@ -251,7 +251,7 @@ static inline void \ brw_inst_set_3src_a16_##reg##_type(const struct gen_device_info *devinfo, \ brw_inst *inst, enum brw_reg_type type) \ { \ - unsigned hw_type = brw_reg_type_to_hw_3src_type(devinfo, type); \ + unsigned hw_type = brw_reg_type_to_a16_hw_3src_type(devinfo, type); \ brw_inst_set_3src_a16_##reg##_hw_type(devinfo, inst, hw_type); \ } \ \ @@ -260,7 +260,7 @@ brw_inst_3src_a16_##reg##_type(const struct gen_device_info *devinfo, \ const brw_inst *inst) \ { \ unsigned hw_type = brw_inst_3src_a16_##reg##_hw_type(devinfo, inst); \ - return brw_hw_3src_type_to_reg_type(devinfo, hw_type); \ + return brw_a16_hw_3src_type_to_reg_type(devinfo, hw_type); \ } REG_TYPE(dst) |