[Mesa-dev] [PATCH] nv50/ir: fix a comment in canDualIssue()

Ilia Mirkin imirkin at alum.mit.edu
Sat May 21 14:38:23 UTC 2016


Reviewed-by: Ilia Mirkin <imirkin at alum.mit.edu>

On Sat, May 21, 2016 at 10:13 AM, Samuel Pitoiset
<samuel.pitoiset at gmail.com> wrote:
> Trivial.
>
> Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
> ---
>  src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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())
> --
> 2.8.2
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list