i965/disasm: Add CSEL.

This commit is contained in:
Matt Turner 2014-08-18 18:18:30 -07:00
parent 39a920c0cb
commit 6cc6c3b647
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ const struct opcode_desc opcode_descs[128] = {
[BRW_OPCODE_ASR] = { .name = "asr", .nsrc = 2, .ndst = 1 },
[BRW_OPCODE_CMP] = { .name = "cmp", .nsrc = 2, .ndst = 1 },
[BRW_OPCODE_CMPN] = { .name = "cmpn", .nsrc = 2, .ndst = 1 },
[BRW_OPCODE_CSEL] = { .name = "csel", .nsrc = 3, .ndst = 1 },
[BRW_OPCODE_BFE] = { .name = "bfe", .nsrc = 3, .ndst = 1 },
[BRW_OPCODE_BFI1] = { .name = "bfi1", .nsrc = 2, .ndst = 1 },
[BRW_OPCODE_BFI2] = { .name = "bfi2", .nsrc = 3, .ndst = 1 },