[llvm-commits] CVS: llvm/include/llvm/ParameterAttributes.h

Reid Spencer reid at x10sys.com
Sun Apr 8 15:50:46 PDT 2007



Changes in directory llvm/include/llvm:

ParameterAttributes.h updated: 1.3 -> 1.4
---
Log message:

Fix a typo.


---
Diffs of the changes:  (+2 -2)

 ParameterAttributes.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/include/llvm/ParameterAttributes.h
diff -u llvm/include/llvm/ParameterAttributes.h:1.3 llvm/include/llvm/ParameterAttributes.h:1.4
--- llvm/include/llvm/ParameterAttributes.h:1.3	Sun Apr  8 17:30:27 2007
+++ llvm/include/llvm/ParameterAttributes.h	Sun Apr  8 17:50:29 2007
@@ -132,7 +132,7 @@
     /// 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 @@
     /// 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






More information about the llvm-commits mailing list