diff options
author | Keith Whitwell <[email protected]> | 2009-09-01 17:29:24 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-09-01 17:30:01 +0100 |
commit | b3f4b56a3b7f979c631358caefed635c6ec56453 (patch) | |
tree | 714f8b2bf31dea318986cf8a1cfd5deaefe171db /src/gallium/auxiliary/tgsi/tgsi_info.c | |
parent | 836a9f0ae6e03d2f92dc024703015c25a5b3c353 (diff) |
tgsi: remove redundant CND0 opcode
Can be implemented with CMP src2, src1, src0
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_info.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c b/src/gallium/auxiliary/tgsi/tgsi_info.c index ccf4b205ffb..e69cd052132 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_info.c +++ b/src/gallium/auxiliary/tgsi/tgsi_info.c @@ -51,7 +51,7 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] = { 1, 2, 0, 0, "SUB", TGSI_OPCODE_SUB }, { 1, 3, 0, 0, "LRP", TGSI_OPCODE_LRP }, { 1, 3, 0, 0, "CND", TGSI_OPCODE_CND }, - { 1, 3, 0, 0, "CND0", TGSI_OPCODE_CND0 }, + { 0, 0, 0, 0, "", 20 }, /* removed */ { 1, 3, 0, 0, "DP2A", TGSI_OPCODE_DP2A }, { 0, 0, 0, 0, "", 22 }, /* removed */ { 0, 0, 0, 0, "", 23 }, /* removed */ |