Skip to content

Commit 1a8637a

Browse files
committed
[fix] run clang format
1 parent c5bc34a commit 1a8637a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

llvm/unittests/CodeGen/LowLevelTypeTest.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,7 @@ TEST(LowLevelTypeTest, Pointer) {
306306
// Test Type->LLT conversion.
307307
Type *IRTy = PointerType::get(C, AS);
308308
EXPECT_EQ(Ty, getLLTForType(*IRTy, DL));
309-
Type *IRVTy =
310-
VectorType::get(PointerType::get(C, AS), EC);
309+
Type *IRVTy = VectorType::get(PointerType::get(C, AS), EC);
311310
EXPECT_EQ(VTy, getLLTForType(*IRVTy, DL));
312311
}
313312
}

llvm/unittests/FuzzMutate/OperationsTest.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ TEST(OperationsTest, SourcePreds) {
9393
Constant *v8i1 = ConstantVector::getSplat(ElementCount::getFixed(8), i1);
9494
Constant *v8i8 = ConstantVector::getSplat(ElementCount::getFixed(8), i8);
9595
Constant *v4f16 = ConstantVector::getSplat(ElementCount::getFixed(4), f16);
96-
Constant *p0i32 =
97-
ConstantPointerNull::get(PointerType::get(Ctx, 0));
96+
Constant *p0i32 = ConstantPointerNull::get(PointerType::get(Ctx, 0));
9897
Constant *v8p0i32 =
9998
ConstantVector::getSplat(ElementCount::getFixed(8), p0i32);
10099
Constant *vni32 = ConstantVector::getSplat(ElementCount::getScalable(8), i32);

0 commit comments

Comments
 (0)