Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/unittests/IR/AttributesTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ TEST(Attributes, SetIntersect) {

ConstantRange CR0(APInt(32, 0), APInt(32, 10));
ConstantRange CR1(APInt(32, 15), APInt(32, 20));
ArrayRef<ConstantRange> CRL0 = {CR0};
ArrayRef<ConstantRange> CRL1 = {CR0, CR1};
ConstantRange CRL0[] = {CR0};
ConstantRange CRL1[] = {CR0, CR1};
Type *T0 = Type::getInt32Ty(C0);
Type *T1 = Type::getInt64Ty(C0);
Attribute Attr0 = BuildAttr(C0, Kind, V0, T0, CR0, CRL0);
Expand Down
Loading