summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2015-03-19 16:44:14 -0700
committerIan Romanick <ian.d.romanick@intel.com>2015-03-20 12:27:02 -0700
commita04b520890c669ce012b4b18165392dcabe0b27b (patch)
treeeeb8d350754fd6593e14033d3c1e21606ca97916 /src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
parentccb9cbc849af50c435ec69498281cd3cef52d02e (diff)
downloadexternal_mesa3d-a04b520890c669ce012b4b18165392dcabe0b27b.zip
external_mesa3d-a04b520890c669ce012b4b18165392dcabe0b27b.tar.gz
external_mesa3d-a04b520890c669ce012b4b18165392dcabe0b27b.tar.bz2
i965/fs: Use correct null destination register in cmod tests
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89670 Reviewed-by: Matt Turner <mattst88@gmail.com> Cc: Vinson Lee <vlee@freedesktop.org>
Diffstat (limited to 'src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp b/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
index 1ce14f8..ed8744d 100644
--- a/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
+++ b/src/mesa/drivers/dri/i965/test_fs_cmod_propagation.cpp
@@ -459,7 +459,7 @@ TEST_F(cmod_propagation_test, andnz_one)
v->emit(BRW_OPCODE_CMP, retype(dest, BRW_REGISTER_TYPE_F), src0, zero)
->conditional_mod = BRW_CONDITIONAL_L;
- v->emit(BRW_OPCODE_AND, v->reg_null_f, dest, one)
+ v->emit(BRW_OPCODE_AND, v->reg_null_d, dest, one)
->conditional_mod = BRW_CONDITIONAL_NZ;
/* = Before =
@@ -494,7 +494,7 @@ TEST_F(cmod_propagation_test, andnz_non_one)
v->emit(BRW_OPCODE_CMP, retype(dest, BRW_REGISTER_TYPE_F), src0, zero)
->conditional_mod = BRW_CONDITIONAL_L;
- v->emit(BRW_OPCODE_AND, v->reg_null_f, dest, nonone)
+ v->emit(BRW_OPCODE_AND, v->reg_null_d, dest, nonone)
->conditional_mod = BRW_CONDITIONAL_NZ;
/* = Before =
@@ -529,7 +529,7 @@ TEST_F(cmod_propagation_test, andz_one)
v->emit(BRW_OPCODE_CMP, retype(dest, BRW_REGISTER_TYPE_F), src0, zero)
->conditional_mod = BRW_CONDITIONAL_L;
- v->emit(BRW_OPCODE_AND, v->reg_null_f, dest, one)
+ v->emit(BRW_OPCODE_AND, v->reg_null_d, dest, one)
->conditional_mod = BRW_CONDITIONAL_Z;
/* = Before =