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 | 041221c0972ff575b07f76808c504833d629ae1f (patch) | |
tree | f413ba84a11527b28bd0609ab30a40cc4a805b63 /include/llvm/Function.h | |
parent | 7520fcd7a5e4c17011588aab105dea9afa2ba3ec (diff) |
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/Function.h')
-rw-r--r-- | include/llvm/Function.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 2ffd5eaacd..be7ea91049 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -144,10 +144,12 @@ public: SubclassData = (SubclassData & 1) | (CC << 1); } - /// getParamAttrs - Return the parameter attributes for this function. + /// getParamAttrs - Return the parameter attributes for this Function. + /// const PAListPtr &getParamAttrs() const { return ParamAttrs; } /// setParamAttrs - Set the parameter attributes for this Function. + /// void setParamAttrs(const PAListPtr &attrs) { ParamAttrs = attrs; } /// hasCollector/getCollector/setCollector/clearCollector - The name of the |