IR: Add MDCompositeTypeBase::replace*()
[oota-llvm.git] / unittests / IR / AttributesTest.cpp
index 2368bdf94dc43e6fa40f5812da78425ee7a7622b..ebcb772bc373963f67ba3ce334fd5327dec2df64 100644 (file)
@@ -31,4 +31,17 @@ TEST(Attributes, Uniquing) {
   EXPECT_EQ(SetA, SetB);
 }
 
+TEST(Attributes, Ordering) {
+  LLVMContext C;
+
+  AttributeSet ASs[] = {
+    AttributeSet::get(C, 2, Attribute::ZExt),
+    AttributeSet::get(C, 1, Attribute::SExt)
+  };
+
+  AttributeSet SetA = AttributeSet::get(C, ASs);
+  AttributeSet SetB = SetA.removeAttributes(C, 1, ASs[1]);
+  EXPECT_NE(SetA, SetB);
+}
+
 } // end anonymous namespace