Skip to content

Commit 1563d74

Browse files
committed
[Passes] Remove extra ';' outside of a function (NFC)
/llvm-project/llvm/lib/Passes/PassBuilder.cpp:1508:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi] 1508 | }; | ^ 1 error generated.
1 parent b3d1302 commit 1563d74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Passes/PassBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ Expected<bool> parseMachineBlockPlacementPassOptions(StringRef Params) {
15051505
inconvertibleErrorCode());
15061506
}
15071507
return AllowTailMerge;
1508-
};
1508+
}
15091509

15101510
Expected<bool> parseVirtRegRewriterPassOptions(StringRef Params) {
15111511
bool ClearVirtRegs = true;

0 commit comments

Comments
 (0)