mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 22:30:33 +00:00
Add the LLVM context to this c'tor. It will be needed in the future.
llvm-svn: 165687
This commit is contained in:
parent
205a5f682c
commit
d56ce45fd5
@ -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 {
|
||||
|
@ -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) {}
|
||||
|
Loading…
Reference in New Issue
Block a user