summaryrefslogtreecommitdiff
path: root/include/llvm/Argument.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-19 07:18:57 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-19 07:18:57 +0000
commit034b94b17006f51722886b0f2283fb6fb19aca1f (patch)
treee42e091c12137e9599d0e58bfa4336c4af7333b3 /include/llvm/Argument.h
parent85022561f9c78446bbc5f745cd9b58f4e5dc92ec (diff)
downloadllvm-034b94b17006f51722886b0f2283fb6fb19aca1f.tar.gz
llvm-034b94b17006f51722886b0f2283fb6fb19aca1f.tar.bz2
llvm-034b94b17006f51722886b0f2283fb6fb19aca1f.tar.xz
Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170502 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Argument.h')
-rw-r--r--include/llvm/Argument.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h
index dc9df34c60..e457595f8b 100644
--- a/include/llvm/Argument.h
+++ b/include/llvm/Argument.h
@@ -73,10 +73,10 @@ public:
bool hasStructRetAttr() const;
/// addAttr - Add a Attribute to an argument
- void addAttr(Attributes);
+ void addAttr(Attribute);
/// removeAttr - Remove a Attribute from an argument
- void removeAttr(Attributes);
+ void removeAttr(Attribute);
/// classof - Methods for support type inquiry through isa, cast, and
/// dyn_cast: