summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nv50/codegen
diff options
context:
space:
mode:
authorFrancisco Jerez <[email protected]>2011-11-14 23:09:45 +0100
committerChristoph Bumiller <[email protected]>2012-04-14 21:53:59 +0200
commit658c0bee712368fba31de677c3b64fc72ea1171d (patch)
tree23f5d53d73ffca3d06920f417e43d0fc227b0215 /src/gallium/drivers/nv50/codegen
parentf8741ff21eb014567a538c7f1475bb8d22a4a830 (diff)
nv50/ir/opt: Fix OP_NOT to modifier conversion.
Diffstat (limited to 'src/gallium/drivers/nv50/codegen')
-rw-r--r--src/gallium/drivers/nv50/codegen/nv50_ir.cpp2
1 files changed, 1 insertions, 1 deletions
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;