summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/IR/InstrTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/include/llvm/IR/InstrTypes.h')
-rw-r--r--llvm/include/llvm/IR/InstrTypes.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/include/llvm/IR/InstrTypes.h b/llvm/include/llvm/IR/InstrTypes.h
index 0e81d3b391a0..fed21b992e3d 100644
--- a/llvm/include/llvm/IR/InstrTypes.h
+++ b/llvm/include/llvm/IR/InstrTypes.h
@@ -1909,6 +1909,18 @@ public:
/// Determine whether the return value has the given attribute.
bool hasRetAttr(StringRef Kind) const { return hasRetAttrImpl(Kind); }
+ /// Return the attribute for the given attribute kind for the return value.
+ Attribute getRetAttr(Attribute::AttrKind Kind) const {
+ Attribute RetAttr = Attrs.getRetAttr(Kind);
+ if (RetAttr.isValid())
+ return RetAttr;
+
+ // Look at the callee, if available.
+ if (const Function *F = getCalledFunction())
+ return F->getAttributes().getRetAttr(Kind);
+ return Attribute();
+ }
+
/// Determine whether the argument or parameter has the given attribute.
bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const;