summaryrefslogtreecommitdiff
path: root/include/llvm/Support/CallSite.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-04 06:52:09 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-04 06:52:09 +0000
commit5df15c692b944b6c46ec6d532fc286b7e0000d5d (patch)
tree6c5f1b9a79245e13bfda0f4e0d0918f7f8165604 /include/llvm/Support/CallSite.h
parentfac31ded9610565bac130754729f7ff32af08c0d (diff)
downloadllvm-5df15c692b944b6c46ec6d532fc286b7e0000d5d.tar.gz
llvm-5df15c692b944b6c46ec6d532fc286b7e0000d5d.tar.bz2
llvm-5df15c692b944b6c46ec6d532fc286b7e0000d5d.tar.xz
Add method to query for 'NoAlias' attribute on call/invoke instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165208 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CallSite.h')
-rw-r--r--include/llvm/Support/CallSite.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 3e1a2f5822..98c48d9aaa 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -208,6 +208,9 @@ public:
bool paramHasByValAttr(unsigned i) const {
CALLSITE_DELEGATE_GETTER(paramHasByValAttr(i));
}
+ bool paramHasNoAliasAttr(unsigned i) const {
+ CALLSITE_DELEGATE_GETTER(paramHasNoAliasAttr(i));
+ }
/// paramHasAttr - whether the call or the callee has the given attribute.
bool paramHasAttr(uint16_t i, Attributes attr) const {