summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_logic.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-09-13 16:12:48 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-09-13 16:12:48 +0100
commit5e13e987da6ce656b08f6c25f8d373c80949e3b0 (patch)
treec31615f159363015999e7425e396cb44b68e0632 /src/gallium/drivers/llvmpipe/lp_bld_logic.c
parentfaec23387e035bcdd413b7364933d36a8ec22dba (diff)
llvmpipe: Use const keyword for input array arguments.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_logic.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_logic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_logic.c b/src/gallium/drivers/llvmpipe/lp_bld_logic.c
index d566780e5d..995a69c0f4 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_logic.c
+++ b/src/gallium/drivers/llvmpipe/lp_bld_logic.c
@@ -337,7 +337,7 @@ LLVMValueRef
lp_build_select_aos(struct lp_build_context *bld,
LLVMValueRef a,
LLVMValueRef b,
- boolean cond[4])
+ const boolean cond[4])
{
const union lp_type type = bld->type;
const unsigned n = type.length;