File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments