summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/IR/Attributes.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/include/llvm/IR/Attributes.h')
-rw-r--r--llvm/include/llvm/IR/Attributes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/include/llvm/IR/Attributes.h b/llvm/include/llvm/IR/Attributes.h
index 0c2a02514ba0..7dd8a329029a 100644
--- a/llvm/include/llvm/IR/Attributes.h
+++ b/llvm/include/llvm/IR/Attributes.h
@@ -848,6 +848,11 @@ public:
return getAttributeAtIndex(FunctionIndex, Kind);
}
+ /// Return the attribute for the given attribute kind for the return value.
+ Attribute getRetAttr(Attribute::AttrKind Kind) const {
+ return getAttributeAtIndex(ReturnIndex, Kind);
+ }
+
/// Return the alignment of the return value.
MaybeAlign getRetAlignment() const;