fix comment: s/branch/kill/
authorBrian <brian.paul@tungstengraphics.com>
Tue, 2 Oct 2007 22:50:40 +0000 (16:50 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Tue, 2 Oct 2007 22:50:40 +0000 (16:50 -0600)
src/mesa/shader/slang/slang_emit.c

index fe13f28..41646af 100644 (file)
@@ -864,7 +864,7 @@ emit_kill(slang_emit_info *emitInfo)
     * Note that ARB-KILL depends on sign of vector operand.
     */
    inst = new_instruction(emitInfo, OPCODE_KIL_NV);
-   inst->DstReg.CondMask = COND_TR;  /* always branch */
+   inst->DstReg.CondMask = COND_TR;  /* always kill */
    return inst;
 }