Skip to content

Commit ba489f4

Browse files
committed
Format
1 parent afaf447 commit ba489f4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/CodeGen/CGBuiltin.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11292,8 +11292,7 @@ Value *CodeGenFunction::EmitAArch64SMEBuiltinExpr(unsigned BuiltinID,
1129211292
if (const auto *FPT = FD->getType()->getAs<FunctionProtoType>()) {
1129311293
unsigned SMEAttrs = FPT->getAArch64SMEAttributes();
1129411294
if (!(SMEAttrs & FunctionType::SME_PStateSMCompatibleMask)) {
11295-
bool IsStreaming =
11296-
SMEAttrs & FunctionType::SME_PStateSMEnabledMask;
11295+
bool IsStreaming = SMEAttrs & FunctionType::SME_PStateSMEnabledMask;
1129711296
return ConstantInt::getBool(Builder.getContext(), IsStreaming);
1129811297
}
1129911298
}

0 commit comments

Comments
 (0)