summaryrefslogtreecommitdiff
path: root/include/llvm/Instructions.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r--include/llvm/Instructions.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index 7a0379e371..a607c84c5b 100644
--- a/include/llvm/Instructions.h
+++ b/include/llvm/Instructions.h
@@ -1272,6 +1272,14 @@ public:
return paramHasAttr(~0, N);
}
+ /// @brief Determine whether the call or the callee has the given attributes.
+ bool paramHasSExtAttr(unsigned i) const;
+ bool paramHasZExtAttr(unsigned i) const;
+ bool paramHasInRegAttr(unsigned i) const;
+ bool paramHasStructRetAttr(unsigned i) const;
+ bool paramHasNestAttr(unsigned i) const;
+ bool paramHasByValAttr(unsigned i) const;
+
/// @brief Determine whether the call or the callee has the given attribute.
bool paramHasAttr(unsigned i, Attributes attr) const;
@@ -3034,6 +3042,14 @@ public:
return paramHasAttr(~0, N);
}
+ /// @brief Determine whether the call or the callee has the given attributes.
+ bool paramHasSExtAttr(unsigned i) const;
+ bool paramHasZExtAttr(unsigned i) const;
+ bool paramHasInRegAttr(unsigned i) const;
+ bool paramHasStructRetAttr(unsigned i) const;
+ bool paramHasNestAttr(unsigned i) const;
+ bool paramHasByValAttr(unsigned i) const;
+
/// @brief Determine whether the call or the callee has the given attribute.
bool paramHasAttr(unsigned i, Attributes attr) const;