diff options
author | Matt Turner <mattst88@gmail.com> | 2014-04-20 14:36:37 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2014-04-22 09:12:31 -0700 |
commit | f02f48929562aaef853b073dee41d4b21f4718b1 (patch) | |
tree | 7f5d5590760856e14cb77484786713fdff1f76ec /src | |
parent | 06501b3cf07678a8d5e058627fb54cf997092931 (diff) | |
download | external_mesa3d-f02f48929562aaef853b073dee41d4b21f4718b1.zip external_mesa3d-f02f48929562aaef853b073dee41d4b21f4718b1.tar.gz external_mesa3d-f02f48929562aaef853b073dee41d4b21f4718b1.tar.bz2 |
i965/disasm: Fix s/xoo/xor/ typo.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src')
-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 0bc7a64..e54172c 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -379,7 +379,7 @@ static const char *const dp_dc1_msg_type_hsw[16] = { static const char * const aop[16] = { [BRW_AOP_AND] = "and", [BRW_AOP_OR] = "or", - [BRW_AOP_XOR] = "xoo", + [BRW_AOP_XOR] = "xor", [BRW_AOP_MOV] = "mov", [BRW_AOP_INC] = "inc", [BRW_AOP_DEC] = "dec", |