Skip to content

Commit 1cfa766

Browse files
committed
fix format issue
Signed-off-by: gejin <[email protected]>
1 parent 2ccb0f2 commit 1cfa766

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/tools/sycl-post-link/sycl-post-link.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,8 @@ int main(int argc, char **argv) {
644644
// any other functionalities such as code split...
645645
bool DoSplit = (SplitMode.getNumOccurrences() > 0) && !DeadCodeRemoval;
646646
bool DoSpecConst = SpecConstLower.getNumOccurrences() > 0;
647-
bool DoParamInfo = EmitKernelParamInfo.getNumOccurrences() > 0 && !DeadCodeRemoval;
647+
bool DoParamInfo =
648+
EmitKernelParamInfo.getNumOccurrences() > 0 && !DeadCodeRemoval;
648649

649650
if (!DoSplit && !DoSpecConst && !DoSymGen && !DoParamInfo) {
650651
errs() << "no actions specified; try --help for usage info\n";

0 commit comments

Comments
 (0)