From: Francisco Jerez Date: Mon, 14 Nov 2011 22:09:45 +0000 (+0100) Subject: nv50/ir/opt: Fix OP_NOT to modifier conversion. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=658c0bee712368fba31de677c3b64fc72ea1171d;p=mesa.git nv50/ir/opt: Fix OP_NOT to modifier conversion. --- diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir.cpp index 7d9b7e2b760..855d4241a2e 100644 --- a/src/gallium/drivers/nv50/codegen/nv50_ir.cpp +++ b/src/gallium/drivers/nv50/codegen/nv50_ir.cpp @@ -37,7 +37,7 @@ Modifier::Modifier(operation op) case OP_NEG: bits = NV50_IR_MOD_NEG; break; case OP_ABS: bits = NV50_IR_MOD_ABS; break; case OP_SAT: bits = NV50_IR_MOD_SAT; break; - case OP_NOP: bits = NV50_IR_MOD_NOT; break; + case OP_NOT: bits = NV50_IR_MOD_NOT; break; default: bits = 0; break;