Skip to content

Commit e3e79b1

Browse files
committed
Fix formatting
1 parent 49c747c commit e3e79b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/Sema/SemaSYCL.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2027,7 +2027,8 @@ void Sema::MarkDevice(void) {
20272027
Diag(Attr->getLocation(), diag::note_conflicting_attribute);
20282028
SYCLKernel->setInvalidDecl();
20292029
}
2030-
} else if (auto *Existing = SYCLKernel->getAttr<SYCLIntelMaxWorkGroupSizeAttr>()) {
2030+
} else if (auto *Existing =
2031+
SYCLKernel->getAttr<SYCLIntelMaxWorkGroupSizeAttr>()) {
20312032
if (Existing->getXDim() < Attr->getXDim() ||
20322033
Existing->getYDim() < Attr->getYDim() ||
20332034
Existing->getZDim() < Attr->getZDim()) {

0 commit comments

Comments
 (0)