summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>2016-05-21 16:13:48 +0200
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>2016-05-21 16:50:25 +0200
commit5e32cc91921209ed27027c57d6bff3d25e189e5a (patch)
treee8073250627bd2a2855847012bb694e3c846f6c9
parent70834d05cd2ac6ccceff3a8cbf7c797c6d3679ba (diff)
downloadexternal_mesa3d-5e32cc91921209ed27027c57d6bff3d25e189e5a.zip
external_mesa3d-5e32cc91921209ed27027c57d6bff3d25e189e5a.tar.gz
external_mesa3d-5e32cc91921209ed27027c57d6bff3d25e189e5a.tar.bz2
nv50/ir: fix a comment in canDualIssue()
Trivial. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
-rw-r--r--src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp
index 9e1e7bf..fd0f894 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp
@@ -625,7 +625,7 @@ bool TargetNVC0::canDualIssue(const Instruction *a, const Instruction *b) const
// nothing with TEXBAR
if (a->op == OP_TEXBAR || b->op == OP_TEXBAR)
return false;
- // no loads and stores accessing the the same space
+ // no loads and stores accessing the same space
if ((clA == OPCLASS_LOAD && clB == OPCLASS_STORE) ||
(clB == OPCLASS_LOAD && clA == OPCLASS_STORE))
if (a->src(0).getFile() == b->src(0).getFile())