From: Christoph Haag Date: Thu, 20 Apr 2017 08:34:18 +0000 (+0200) Subject: ac: fix build after LLVM 5.0 SVN r300718 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a9d27c8a33a4aef9b71f716cd08ad3d52bc1591c;hp=3af7f8275b806d42daaad6f700c3917f8e33d3e4;p=mesa.git ac: fix build after LLVM 5.0 SVN r300718 v2: previously getWithDereferenceableBytes() exists, but addAttr() doesn't take that type Signed-off-by: Christoph Haag Reviewed-by: Nicolai Hähnle Tested-and-reviewed-by: Mike Lothian --- diff --git a/src/amd/common/ac_llvm_helper.cpp b/src/amd/common/ac_llvm_helper.cpp index d9ea4b162e9..11fa80920d6 100644 --- a/src/amd/common/ac_llvm_helper.cpp +++ b/src/amd/common/ac_llvm_helper.cpp @@ -44,9 +44,13 @@ typedef AttributeSet AttributeList; void ac_add_attr_dereferenceable(LLVMValueRef val, uint64_t bytes) { llvm::Argument *A = llvm::unwrap(val); +#if HAVE_LLVM < 0x0500 llvm::AttrBuilder B; B.addDereferenceableAttr(bytes); A->addAttr(llvm::AttributeList::get(A->getContext(), A->getArgNo() + 1, B)); +#else + A->addAttr(llvm::Attribute::getWithDereferenceableBytes(A->getContext(), bytes)); +#endif } bool ac_is_sgpr_param(LLVMValueRef arg)