diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-02-06 06:48:10 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-02-06 06:48:10 +0000 |
commit | 60309e17a3a86756f7a1bbaca409159733586f2d (patch) | |
tree | d145ab858df82b896d90fdf9353e985e0955105b | |
parent | be5d747f69ee605a6b9ac44e7b95da6eb0b6a2f5 (diff) | |
download | external_llvm-60309e17a3a86756f7a1bbaca409159733586f2d.zip external_llvm-60309e17a3a86756f7a1bbaca409159733586f2d.tar.gz external_llvm-60309e17a3a86756f7a1bbaca409159733586f2d.tar.bz2 |
Remove unused private field to suppress a build warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174491 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/IR/AttributeImpl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/IR/AttributeImpl.h b/lib/IR/AttributeImpl.h index 5f9e3e7..84f472d 100644 --- a/lib/IR/AttributeImpl.h +++ b/lib/IR/AttributeImpl.h @@ -101,7 +101,6 @@ public: /// could be a single enum, a tuple, or a string. class AttributeImpl : public FoldingSetNode { LLVMContext &Context; ///< Global context for uniquing objects - Constant *Kind; ///< Kind of attribute: enum or string AttributeEntry *Entry; ///< Holds the kind and value of the attribute |