From: Bill Wendling Date: Thu, 11 Oct 2012 01:10:00 +0000 (+0000) Subject: Add the LLVM context to this c'tor. It will be needed in the future. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=96a2794ab0122be0cef1f6d388837a3eb05af96a;p=oota-llvm.git Add the LLVM context to this c'tor. It will be needed in the future. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165687 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h index 8b43e08f084..e0b6a507bc4 100644 --- a/include/llvm/Attributes.h +++ b/include/llvm/Attributes.h @@ -95,7 +95,7 @@ private: public: Attributes() : Attrs(0) {} explicit Attributes(uint64_t Val); - explicit Attributes(AttrVal Val); + explicit Attributes(LLVMContext &C, AttrVal Val); Attributes(const Attributes &A); class Builder { diff --git a/lib/VMCore/Attributes.cpp b/lib/VMCore/Attributes.cpp index 7ae823214bb..16c5466f173 100644 --- a/lib/VMCore/Attributes.cpp +++ b/lib/VMCore/Attributes.cpp @@ -29,7 +29,7 @@ using namespace llvm; Attributes::Attributes(uint64_t Val) : Attrs(Val) {} -Attributes::Attributes(AttrVal Val) +Attributes::Attributes(LLVMContext &C, AttrVal Val) : Attrs(Attributes::get(Attributes::Builder().addAttribute(Val)).Attrs) {} Attributes::Attributes(AttributesImpl *A) : Attrs(A->Bits) {}