git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300614
91177308-0d34-0410-b5e6-
96231b3b80d8
if (!AS.hasAttributes())
return *this;
+ if (!pImpl)
+ return AttributeList::get(C, {{Index, AS}});
+
#ifndef NDEBUG
// FIXME it is not obvious how this should work for alignment. For now, say
// we can't change a known alignment.
EXPECT_NE(SetA, SetB);
}
+TEST(Attributes, AddAttributes) {
+ LLVMContext C;
+ AttributeList AL;
+ AttrBuilder B;
+ B.addAttribute(Attribute::NoReturn);
+ AL = AL.addAttributes(C, AttributeList::FunctionIndex, AttributeSet::get(C, B));
+ EXPECT_TRUE(AL.hasFnAttribute(Attribute::NoReturn));
+}
+
} // end anonymous namespace