From: Brian Date: Tue, 2 Oct 2007 22:50:40 +0000 (-0600) Subject: fix comment: s/branch/kill/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2dbd905ab0265b520efccce24ce9de66b6fc5fb0;p=mesa.git fix comment: s/branch/kill/ --- diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index fe13f2865cd..41646af387a 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -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; }