diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-13 04:33:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-13 04:33:03 +0000 |
commit | 23bdca932c3db63bf572aa208a2e6fe6fd12ecc5 (patch) | |
tree | f413ba84a11527b28bd0609ab30a40cc4a805b63 /include/llvm/Instructions.h | |
parent | d6298a3f9e69f6ba6f281732016e1c6a14042217 (diff) | |
download | external_llvm-23bdca932c3db63bf572aa208a2e6fe6fd12ecc5.zip external_llvm-23bdca932c3db63bf572aa208a2e6fe6fd12ecc5.tar.gz external_llvm-23bdca932c3db63bf572aa208a2e6fe6fd12ecc5.tar.bz2 |
Various improvements suggested by Duncan
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r-- | include/llvm/Instructions.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index d29e11c..741153f 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -926,11 +926,11 @@ public: SubclassData = (SubclassData & 1) | (CC << 1); } - /// getParamAttrs - Return the PAListPtr for the parameter attributes of this - /// call. + /// getParamAttrs - Return the parameter attributes for this call. + /// const PAListPtr &getParamAttrs() const { return ParamAttrs; } - /// setParamAttrs - Sets the parameter attributes for this CallInst. + /// setParamAttrs - Sets the parameter attributes for this call. void setParamAttrs(const PAListPtr &Attrs) { ParamAttrs = Attrs; } /// @brief Determine whether the call or the callee has the given attribute. @@ -1740,11 +1740,11 @@ public: SubclassData = CC; } - /// getParamAttrs - Return the parameter attribute list for this invoke. + /// getParamAttrs - Return the parameter attributes for this invoke. /// const PAListPtr &getParamAttrs() const { return ParamAttrs; } - /// setParamAttrs - Set the parameter attribute list for this invoke. + /// setParamAttrs - Set the parameter attributes for this invoke. /// void setParamAttrs(const PAListPtr &Attrs) { ParamAttrs = Attrs; } |