diff options
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 |