summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-11 01:10:00 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-11 01:10:00 +0000
commit96a2794ab0122be0cef1f6d388837a3eb05af96a (patch)
tree60999bb86774256563e48495cfdcb49efd64f3e6 /include/llvm
parent3183951d88680d6077dbb7a4b0daf84124434f45 (diff)
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
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Attributes.h2
1 files changed, 1 insertions, 1 deletions
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 {