Skip to content

Commit f4f08ec

Browse files
committed
Fix clang format issues
Signed-off-by: Soumi Manna <[email protected]>
1 parent 242054d commit f4f08ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3166,9 +3166,9 @@ static void handleWorkGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
31663166
}
31673167
if (const auto *ExistingAttr = D->getAttr<WorkGroupAttr>()) {
31683168
// Compare attribute arguments value and warn for a mismatch.
3169-
if (ExistingAttr->getXDimVal(Ctx) != XDimVal ||
3170-
ExistingAttr->getYDimVal(Ctx) != YDimVal ||
3171-
ExistingAttr->getZDimVal(Ctx) != ZDimVal) {
3169+
if (ExistingAttr->getXDimVal(Ctx) != XDimVal ||
3170+
ExistingAttr->getYDimVal(Ctx) != YDimVal ||
3171+
ExistingAttr->getZDimVal(Ctx) != ZDimVal) {
31723172
S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
31733173
S.Diag(ExistingAttr->getLocation(), diag::note_conflicting_attribute);
31743174
}

0 commit comments

Comments
 (0)