r600g: fix pow(0, 0) evaluating to NaN
authorFredrik Höglund <fredrik@kde.org>
Wed, 15 Dec 2010 19:00:42 +0000 (20:00 +0100)
committerJerome Glisse <jglisse@redhat.com>
Wed, 15 Dec 2010 19:07:00 +0000 (14:07 -0500)
We have to use the non-IEEE compliant version of MUL here, since
log2(0) is -inf, and 0 * -inf is NaN in IEEE arithmetic.

candidates for 7.10 branch

src/gallium/drivers/r600/r600_shader.c

index d6455023a3af94fbc86c057bdcd80aba3d22b3db..9c7b7f0a57864b6d1f70f8631b0d1b19bbd4cb5b 100644 (file)
@@ -1451,7 +1451,7 @@ static int tgsi_pow(struct r600_shader_ctx *ctx)
                return r;
        /* b * LOG2(a) */
        memset(&alu, 0, sizeof(struct r600_bc_alu));
-       alu.inst = CTX_INST(V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL_IEEE);
+       alu.inst = CTX_INST(V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_MUL);
        r = tgsi_src(ctx, &inst->Src[1], &alu.src[0]);
        if (r)
                return r;