diff --git a/include/llvm/Attributes.h b/include/llvm/Attributes.h index 2fc7bd1c552..afb2e564f0e 100644 --- a/include/llvm/Attributes.h +++ b/include/llvm/Attributes.h @@ -95,6 +95,10 @@ public: Attributes() : Attrs(0) {} explicit Attributes(LLVMContext &C, ArrayRef Vals); Attributes(const Attributes &A); + Attributes &operator=(const Attributes &A) { + Attrs = A.Attrs; + return *this; + } class Builder { friend class Attributes;