mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Add accessor for the LLVMContext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174824 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7dcb23a052
commit
85b3fbecdf
@ -286,6 +286,9 @@ public:
|
||||
// AttributeSet Accessors
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
||||
/// \brief Retrieve the LLVM context.
|
||||
LLVMContext &getContext() const;
|
||||
|
||||
/// \brief The attributes for the specified index are returned.
|
||||
AttributeSet getParamAttributes(unsigned Idx) const;
|
||||
|
||||
|
@ -709,6 +709,10 @@ AttributeSet AttributeSet::removeAttributes(LLVMContext &C, unsigned Idx,
|
||||
// AttributeSet Accessor Methods
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
LLVMContext &AttributeSet::getContext() const {
|
||||
return pImpl->getContext();
|
||||
}
|
||||
|
||||
AttributeSet AttributeSet::getParamAttributes(unsigned Idx) const {
|
||||
return pImpl && hasAttributes(Idx) ?
|
||||
AttributeSet::get(pImpl->getContext(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user