summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-07-03 00:49:28 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-07-09 14:08:51 -0700
commit86f2711722dc10c25c2fabc09d8bd020a1ba6029 (patch)
tree50e7e2107a5d2c2276b1411cd8f211b8847b6747 /src/mesa
parent18a223d3237d67a4d38bbab10dc4ab470180cc92 (diff)
downloadexternal_mesa3d-86f2711722dc10c25c2fabc09d8bd020a1ba6029.zip
external_mesa3d-86f2711722dc10c25c2fabc09d8bd020a1ba6029.tar.gz
external_mesa3d-86f2711722dc10c25c2fabc09d8bd020a1ba6029.tar.bz2
i965: Remove pointless intel_context parameter from try_copy_propagate.
It's already part of the visitor class. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Acked-by: Chris Forbes <chrisf@ijw.co.nz> Acked-by: Paul Berry <stereotype441@gmail.com> Acked-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4.h3
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp5
2 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.h b/src/mesa/drivers/dri/i965/brw_vec4.h
index a72d694..dd00ace 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4.h
+++ b/src/mesa/drivers/dri/i965/brw_vec4.h
@@ -391,8 +391,7 @@ public:
vec4_instruction *pre_rhs_inst,
vec4_instruction *last_rhs_inst);
- bool try_copy_propagation(struct intel_context *intel,
- vec4_instruction *inst, int arg,
+ bool try_copy_propagation(vec4_instruction *inst, int arg,
src_reg *values[4]);
/** Walks an exec_list of ir_instruction and sends it through this visitor. */
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
index 64f6ccc..c28d0de 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
@@ -162,8 +162,7 @@ try_constant_propagation(vec4_instruction *inst, int arg, src_reg *values[4])
}
bool
-vec4_visitor::try_copy_propagation(struct intel_context *intel,
- vec4_instruction *inst, int arg,
+vec4_visitor::try_copy_propagation(vec4_instruction *inst, int arg,
src_reg *values[4])
{
/* For constant propagation, we only handle the same constant
@@ -306,7 +305,7 @@ vec4_visitor::opt_copy_propagation()
continue;
if (try_constant_propagation(inst, i, values) ||
- try_copy_propagation(intel, inst, i, values))
+ try_copy_propagation(inst, i, values))
progress = true;
}