diff options
author | Francisco Jerez <[email protected]> | 2016-09-01 22:04:02 -0700 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2016-09-14 14:50:58 -0700 |
commit | 1bb5074474445ea9f54d0f52383f99ac0fa6128f (patch) | |
tree | 4a8b427036056dbcc0af7d2be31e386b064100d5 /src/mesa | |
parent | 3be0d6d040753c62b25077fb6b85ad1f0808b258 (diff) |
i965/vec4: Compare full register offsets in opt_register_coalesce nop move check.
In preparation for adding support for sub-GRF offsets to the VEC4 IR.
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp index f97de185985..d9dbc4c8543 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp @@ -1098,7 +1098,7 @@ vec4_visitor::opt_register_coalesce() /* Remove no-op MOVs */ if (inst->dst.file == inst->src[0].file && inst->dst.nr == inst->src[0].nr && - inst->dst.offset / REG_SIZE == inst->src[0].offset / REG_SIZE) { + inst->dst.offset == inst->src[0].offset) { bool is_nop_mov = true; for (unsigned c = 0; c < 4; c++) { |