Skip to content

Commit 2f207f7

Browse files
committed
Correct a typo; NFC.
1 parent 3141fc4 commit 2f207f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/lib/Sema/SemaDeclAttr.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -3160,9 +3160,9 @@ static void handleWorkGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
31603160
S.addIntelTripleArgAttr<WorkGroupAttr>(D, AL, XDimExpr, YDimExpr, ZDimExpr);
31613161
}
31623162

3163-
// The lambda returns a DupArgResult value; Same means the args have the same
3164-
// value, Different means the args do not have the same value, and Unknown
3165-
// means that the args cannot (yet) be compared.
3163+
// Returns a DupArgResult value; Same means the args have the same value,
3164+
// Different means the args do not have the same value, and Unknown means that
3165+
// the args cannot (yet) be compared.
31663166
enum class DupArgResult { Unknown, Same, Different };
31673167
static DupArgResult AreArgValuesIdentical(const Expr *LHS, const Expr *RHS) {
31683168
// If either operand is still value dependent, we can't test anything.

0 commit comments

Comments
 (0)