diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-08 22:50:29 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-08 22:50:29 +0000 |
commit | b2ff383d493162d1de73bd9f956f468db2a88127 (patch) | |
tree | a819549a5d8de01ff573ea96dd527190f8db0830 /include | |
parent | a3c4112a0ecd50ad89c87a32993834dc91b5898a (diff) | |
download | external_llvm-b2ff383d493162d1de73bd9f956f468db2a88127.zip external_llvm-b2ff383d493162d1de73bd9f956f468db2a88127.tar.gz external_llvm-b2ff383d493162d1de73bd9f956f468db2a88127.tar.bz2 |
Fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ParameterAttributes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ParameterAttributes.h b/include/llvm/ParameterAttributes.h index 897512d..6f774e08 100644 --- a/include/llvm/ParameterAttributes.h +++ b/include/llvm/ParameterAttributes.h @@ -132,7 +132,7 @@ class ParamAttrsList { /// attributes for the specified parameter remain set and the attribute /// given by \p attr is also set. /// @brief Add a single ParameterAttribute - void addAttribute(uint16_t param_index, ParameterAttribute attr); + void addAttribute(uint16_t param_index, ParameterAttributes attr); /// This method will remove the \p attr to the parameter with index /// \p param_index. If the parameter index does not exist in the list, @@ -142,7 +142,7 @@ class ParamAttrsList { /// Otherwise, the specified attribute is removed from the set of attributes /// for the given index. /// @brief Remove a single ParameterAttribute - void removeAttribute(uint16_t param_index, ParameterAttribute attr); + void removeAttribute(uint16_t param_index, ParameterAttributes attr); /// This is identical to addAttribute but permits you to set multiple /// attributes at the same time. The \p attrs value is expected to be a |