Skip to content

Commit 690d6ce

Browse files
committed
Fix parenthesis
1 parent 5dbf9d5 commit 690d6ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3153,8 +3153,8 @@ static void handleWorkGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
31533153
AL.getScopeName()->isStr("intel"))) &&
31543154
"Attribute does not exist in sycl:: or intel:: scope");
31553155

3156-
return (IntegerLiteral::Create(S.Context, llvm::APInt(32, 1),
3157-
S.Context.IntTy, AL.getLoc()));
3156+
return IntegerLiteral::Create(S.Context, llvm::APInt(32, 1),
3157+
S.Context.IntTy, AL.getLoc());
31583158
};
31593159

31603160
Expr *YDimExpr = AL.isArgExpr(1) ? AL.getArgAsExpr(1)

0 commit comments

Comments
 (0)