diff options
author | Eric Anholt <[email protected]> | 2009-12-22 17:05:10 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-12-26 11:18:02 -0800 |
commit | 070bbd4fcd5d2b669b880b91730a7ad9d130e416 (patch) | |
tree | 635e051eafc786324bf49fc28c8852ef251a8469 /src/mesa | |
parent | d01c7bef296f66bffe3ad167abb0c04c25f7fdae (diff) |
i965: Fix setup of immediate types for gen4 disasm.
Caught by clang.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index 9fef230507f..47629dfa3d6 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -239,7 +239,7 @@ char *imm_encoding[8] = { [2] = "UW", [3] = "W", [5] = "VF", - [5] = "V", + [6] = "V", [7] = "F" }; |