diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-10-04 06:52:09 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-10-04 06:52:09 +0000 |
commit | 5df15c692b944b6c46ec6d532fc286b7e0000d5d (patch) | |
tree | 6c5f1b9a79245e13bfda0f4e0d0918f7f8165604 /include/llvm/Instructions.h | |
parent | fac31ded9610565bac130754729f7ff32af08c0d (diff) | |
download | external_llvm-5df15c692b944b6c46ec6d532fc286b7e0000d5d.zip external_llvm-5df15c692b944b6c46ec6d532fc286b7e0000d5d.tar.gz external_llvm-5df15c692b944b6c46ec6d532fc286b7e0000d5d.tar.bz2 |
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/Instructions.h')
-rw-r--r-- | include/llvm/Instructions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index a607c84..711bced 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -1279,6 +1279,7 @@ public: bool paramHasStructRetAttr(unsigned i) const; bool paramHasNestAttr(unsigned i) const; bool paramHasByValAttr(unsigned i) const; + bool paramHasNoAliasAttr(unsigned i) const; /// @brief Determine whether the call or the callee has the given attribute. bool paramHasAttr(unsigned i, Attributes attr) const; @@ -3049,6 +3050,7 @@ public: bool paramHasStructRetAttr(unsigned i) const; bool paramHasNestAttr(unsigned i) const; bool paramHasByValAttr(unsigned i) const; + bool paramHasNoAliasAttr(unsigned i) const; /// @brief Determine whether the call or the callee has the given attribute. bool paramHasAttr(unsigned i, Attributes attr) const; |