mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 11:40:39 +02:00
gallium: fix info entries for KIL, KILP
KIL takes 1 src register. KILP uses no registers (uses cond codes).
This commit is contained in:
parent
ea9568dfbe
commit
8cdab20c9a
1 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] =
|
|||
{ 1, 1, 0, 0, "COS" },
|
||||
{ 1, 1, 0, 0, "DDX" },
|
||||
{ 1, 1, 0, 0, "DDY" },
|
||||
{ 0, 1, 0, 0, "KILP" },
|
||||
{ 0, 0, 0, 0, "KILP" },
|
||||
{ 1, 1, 0, 0, "PK2H" },
|
||||
{ 1, 1, 0, 0, "PK2US" },
|
||||
{ 1, 1, 0, 0, "PK4B" },
|
||||
|
|
@ -146,7 +146,7 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] =
|
|||
{ 0, 1, 0, 0, "CALLNZ" },
|
||||
{ 0, 1, 0, 0, "IFC" },
|
||||
{ 0, 1, 0, 0, "BREAKC" },
|
||||
{ 0, 0, 0, 0, "KIL" },
|
||||
{ 0, 1, 0, 0, "KIL" },
|
||||
{ 0, 0, 0, 0, "END" },
|
||||
{ 1, 1, 0, 0, "SWZ" }
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue