We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ccb0f2 commit 1cfa766Copy full SHA for 1cfa766
llvm/tools/sycl-post-link/sycl-post-link.cpp
@@ -644,7 +644,8 @@ int main(int argc, char **argv) {
644
// any other functionalities such as code split...
645
bool DoSplit = (SplitMode.getNumOccurrences() > 0) && !DeadCodeRemoval;
646
bool DoSpecConst = SpecConstLower.getNumOccurrences() > 0;
647
- bool DoParamInfo = EmitKernelParamInfo.getNumOccurrences() > 0 && !DeadCodeRemoval;
+ bool DoParamInfo =
648
+ EmitKernelParamInfo.getNumOccurrences() > 0 && !DeadCodeRemoval;
649
650
if (!DoSplit && !DoSpecConst && !DoSymGen && !DoParamInfo) {
651
errs() << "no actions specified; try --help for usage info\n";
0 commit comments