diff options
author | Dave Airlie <airlied@redhat.com> | 2017-01-19 14:39:10 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-01-19 16:00:53 +1000 |
commit | ef71b867ee152d8161a8c7320e89843801236249 (patch) | |
tree | 15dd9a8f499650f1a59e4fced6488669b149c30b | |
parent | 3fe8d04a6d69fad98228be647ba9b250ea0e3a8b (diff) |
gallivm: use #ifdef not #if for PIPE_ARCH_BIG_ENDIAN
This fixes the build on ppc/s390.
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Cc: "17.0" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_gather.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_gather.c b/src/gallium/auxiliary/gallivm/lp_bld_gather.c index 2d1fb65b15..ccd03765c7 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_gather.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_gather.c @@ -527,7 +527,7 @@ lp_build_gather(struct gallivm_state *gallivm, if (vec_zext) { res = LLVMBuildZExt(gallivm->builder, res, res_t, ""); if (vector_justify) { -#if PIPE_ARCH_BIG_ENDIAN +#ifdef PIPE_ARCH_BIG_ENDIAN unsigned sv = dst_type.width - src_width; res = LLVMBuildShl(gallivm->builder, res, lp_build_const_int_vec(gallivm, res_type, sv), ""); |