aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Argument.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-23 23:03:40 +0000
committerDevang Patel <dpatel@apple.com>2008-09-23 23:03:40 +0000
commiteaf42abab6d465c38891345d999255871cf03943 (patch)
tree3230b42caed019c8a5332426f6976ab8cbe37bea /include/llvm/Argument.h
parentd9b4a5f859188cbb168c223071b413e58c53c925 (diff)
downloadexternal_llvm-eaf42abab6d465c38891345d999255871cf03943.zip
external_llvm-eaf42abab6d465c38891345d999255871cf03943.tar.gz
external_llvm-eaf42abab6d465c38891345d999255871cf03943.tar.bz2
s/ParameterAttributes/Attributes/g
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56513 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Argument.h')
-rw-r--r--include/llvm/Argument.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h
index ce81a94..0ad5431 100644
--- a/include/llvm/Argument.h
+++ b/include/llvm/Argument.h
@@ -15,7 +15,7 @@
#define LLVM_ARGUMENT_H
#include "llvm/Value.h"
-#include "llvm/ParameterAttributes.h"
+#include "llvm/Attributes.h"
#include "llvm/ADT/ilist_node.h"
namespace llvm {
@@ -61,10 +61,10 @@ public:
bool hasStructRetAttr() const;
/// addAttr - Add a ParamAttr to an argument
- void addAttr(ParameterAttributes);
+ void addAttr(Attributes);
/// removeAttr - Remove a ParamAttr from an argument
- void removeAttr(ParameterAttributes);
+ void removeAttr(Attributes);
/// classof - Methods for support type inquiry through isa, cast, and
/// dyn_cast: