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 a9f8fed commit 8a15d8dCopy full SHA for 8a15d8d
clang/lib/Driver/Driver.cpp
@@ -5479,12 +5479,12 @@ class OffloadingActionBuilder final {
5479
}
5480
5481
5482
- Action *makeHostLinkAction(ActionList &LinkerInputs) {
+ void makeHostLinkAction(ActionList &LinkerInputs) {
5483
// Build a list of device linking actions.
5484
ActionList DeviceAL;
5485
appendDeviceLinkActions(DeviceAL);
5486
if (DeviceAL.empty())
5487
- return nullptr;
+ return;
5488
5489
// Let builders add host linking actions.
5490
for (DeviceActionBuilder *SB : SpecializedBuilders) {
0 commit comments