Skip to content

Commit d889fd7

Browse files
committed
Fix formatting.
1 parent b9144c7 commit d889fd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/Sema/Sema.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2269,7 +2269,8 @@ void Sema::checkTypeSupport(QualType Ty, SourceLocation Loc, ValueDecl *D) {
22692269
(LangOpts.VScaleMin != LangOpts.VScaleStreamingMin ||
22702270
LangOpts.VScaleMax != LangOpts.VScaleStreamingMax)) {
22712271
if (IsArmStreamingFunction(FD, /*IncludeLocallyStreaming=*/true)) {
2272-
Diag(Loc, diag::err_sve_fixed_vector_in_streaming_function) << Ty << /*Streaming*/ 0;
2272+
Diag(Loc, diag::err_sve_fixed_vector_in_streaming_function)
2273+
<< Ty << /*Streaming*/ 0;
22732274
} else if (const auto *FTy = FD->getType()->getAs<FunctionProtoType>()) {
22742275
if (FTy->getAArch64SMEAttributes() &
22752276
FunctionType::SME_PStateSMCompatibleMask) {

0 commit comments

Comments
 (0)