Skip to content

Commit 3d22ed0

Browse files
committed
make clang format happy
1 parent fbaf536 commit 3d22ed0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

clang/lib/CodeGen/CGExpr.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4718,11 +4718,12 @@ EmitExtVectorElementExpr(const ExtVectorElementExpr *E) {
47184718

47194719
// Store the vector to memory (because LValue wants an address).
47204720
Address VecMem = CreateMemTemp(E->getBase()->getType());
4721-
// To be consistent need to zero extend an hlsl boolean vector to store it back
4722-
// to memory
4721+
// To be consistent need to zero extend an hlsl boolean vector to store it
4722+
// back to memory
47234723
QualType Ty = E->getBase()->getType();
47244724
if (Ty->isExtVectorBoolType() && getLangOpts().HLSL)
4725-
Vec = Builder.CreateZExt(Vec, convertTypeForLoadStore(Ty, Vec->getType()));
4725+
Vec =
4726+
Builder.CreateZExt(Vec, convertTypeForLoadStore(Ty, Vec->getType()));
47264727
Builder.CreateStore(Vec, VecMem);
47274728
Base = MakeAddrLValue(VecMem, Ty, AlignmentSource::Decl);
47284729
}

0 commit comments

Comments
 (0)