reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/IR/AttributesTest.cpp
   35   Attribute Align4 = Attribute::get(C, Attribute::Alignment, 4);
   36   Attribute Align5 = Attribute::get(C, Attribute::Alignment, 5);
   37   Attribute Deref4 = Attribute::get(C, Attribute::Dereferenceable, 4);
   38   Attribute Deref5 = Attribute::get(C, Attribute::Dereferenceable, 5);
   44   Attribute ByVal = Attribute::get(C, Attribute::ByVal, Type::getInt32Ty(C));
   44   Attribute ByVal = Attribute::get(C, Attribute::ByVal, Type::getInt32Ty(C));
   45   EXPECT_FALSE(ByVal < Attribute::get(C, Attribute::ZExt));
   48   AttributeList ASs[] = {AttributeList::get(C, 2, Attribute::ZExt),
   49                          AttributeList::get(C, 1, Attribute::SExt)};
   51   AttributeList SetA = AttributeList::get(C, ASs);
   52   AttributeList SetB = SetA.removeAttributes(C, 1, ASs[1].getAttributes(1));