From: Samuel Pitoiset Date: Sat, 21 May 2016 14:13:48 +0000 (+0200) Subject: nv50/ir: fix a comment in canDualIssue() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5e32cc91921209ed27027c57d6bff3d25e189e5a;p=mesa.git nv50/ir: fix a comment in canDualIssue() Trivial. Signed-off-by: Samuel Pitoiset Reviewed-by: Ilia Mirkin --- 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 9e1e7bf5688..fd0f8942caa 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())