[Mesa-dev] [PATCH] clover: Fix build against clang SVN >= r299965

Francisco Jerez currojerez at riseup.net
Wed Apr 12 18:15:22 UTC 2017


Michel Dänzer <michel at daenzer.net> writes:

> From: Michel Dänzer <michel.daenzer at amd.com>
>
> clang::LangAS::Offset is gone, the behaviour is as if it was 0.
> Signed-off-by: Michel Dänzer <michel.daenzer at amd.com>
> ---
>  src/gallium/state_trackers/clover/llvm/codegen/common.cpp | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/src/gallium/state_trackers/clover/llvm/codegen/common.cpp b/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
> index 13ccd591c1..9c81cc5acb 100644
> --- a/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
> +++ b/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
> @@ -129,7 +129,10 @@ namespace {
>                    cast<::llvm::PointerType>(actual_type)->getAddressSpace();
>  
>                 if (address_space == address_spaces[clang::LangAS::opencl_local
> -                                                   - clang::LangAS::Offset]) {
> +#if HAVE_LLVM < 0x0500
> +                                                   - clang::LangAS::Offset
> +#endif

Please let's not obfuscate this further with compatibility preprocessor
conditionals mid-expression, you could instead add a conditional define
into the llvm/compat.hpp file along the lines of:

+#if HAVE_LLVM >= 0x0500
+         const auto lang_as_offset = 0;
+#else
+         const auto lang_as_offset = clang::LangAS::Offset;
+#endif

With that cleaned up patch is:

Reviewed-by: Francisco Jerez <currojerez at riseup.net>

> +                                                   ]) {
>                    args.emplace_back(module::argument::local, arg_api_size,
>                                      target_size, target_align,
>                                      module::argument::zero_ext);
> -- 
> 2.11.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 212 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20170412/7f3c6aae/attachment.sig>


More information about the mesa-dev mailing list