Skip to content

Commit 7ea8058

Browse files
committed
Format
1 parent ec2c950 commit 7ea8058

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

clang/lib/Parse/ParsePragma.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1419,10 +1419,11 @@ bool Parser::HandlePragmaLoopHint(LoopHint &Hint) {
14191419

14201420
// Return a valid hint if pragma unroll or nounroll were specified
14211421
// without an argument.
1422-
auto IsLoopHint = llvm::StringSwitch<bool>(PragmaNameInfo->getName())
1423-
.Cases({"unroll", "nounroll", "unroll_and_jam",
1424-
"nounroll_and_jam"}, true)
1425-
.Default(false);
1422+
auto IsLoopHint =
1423+
llvm::StringSwitch<bool>(PragmaNameInfo->getName())
1424+
.Cases({"unroll", "nounroll", "unroll_and_jam", "nounroll_and_jam"},
1425+
true)
1426+
.Default(false);
14261427

14271428
if (Toks.empty() && IsLoopHint) {
14281429
ConsumeAnnotationToken();

0 commit comments

Comments
 (0)