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 7fdacc4 commit 23b7e9fCopy full SHA for 23b7e9f
clang/lib/Driver/Driver.cpp
@@ -8080,7 +8080,7 @@ Action *Driver::BuildOffloadingActions(Compilation &C,
8080
// add each device output as a host dependency to ensure they are still built.
8081
bool SingleDeviceOutput = !llvm::any_of(OffloadActions, [](Action *A) {
8082
return A->getType() == types::TY_Nothing;
8083
- }) && (isa<CompileJobAction>(HostAction));
+ }) && isa<CompileJobAction>(HostAction);
8084
OffloadAction::HostDependence HDep(
8085
*HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(),
8086
/*BoundArch=*/nullptr, SingleDeviceOutput ? DDep : DDeps);
0 commit comments