From 76b67df11e5cdb87e954a0ad7d1cd7fd4a502be1 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 16 Oct 2012 05:22:28 +0000 Subject: [PATCH] Put simple c'tors inline. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166008 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Attributes.h | 4 ++-- lib/VMCore/Attributes.cpp | 7 +------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h index 72bcca02fff..aac5d9ef4a0 100644 --- a/include/llvm/Attributes.h +++ b/include/llvm/Attributes.h @@ -88,10 +88,10 @@ public: }; private: AttributesImpl *Attrs; - Attributes(AttributesImpl *A); + Attributes(AttributesImpl *A) : Attrs(A) {} public: Attributes() : Attrs(0) {} - Attributes(const Attributes &A); + Attributes(const Attributes &A) : Attrs(A.Attrs) {} Attributes &operator=(const Attributes &A) { Attrs = A.Attrs; return *this; diff --git a/lib/VMCore/Attributes.cpp b/lib/VMCore/Attributes.cpp index cfa276ebd66..f028fd356d6 100644 --- a/lib/VMCore/Attributes.cpp +++ b/lib/VMCore/Attributes.cpp @@ -28,10 +28,6 @@ using namespace llvm; // Attributes Implementation //===----------------------------------------------------------------------===// -Attributes::Attributes(AttributesImpl *A) : Attrs(A) {} - -Attributes::Attributes(const Attributes &A) : Attrs(A.Attrs) {} - Attributes Attributes::get(LLVMContext &Context, ArrayRef Vals) { AttrBuilder B; for (ArrayRef::iterator I = Vals.begin(), E = Vals.end(); @@ -250,8 +246,7 @@ AttrBuilder &AttrBuilder::addStackAlignmentAttr(unsigned Align){ return *this; } -AttrBuilder &AttrBuilder:: -removeAttribute(Attributes::AttrVal Val) { +AttrBuilder &AttrBuilder::removeAttribute(Attributes::AttrVal Val) { Bits &= ~AttributesImpl::getAttrMask(Val); return *this; } -- 2.34.1