Skip to content

Commit 8a15d8d

Browse files
committed
Properly resolve merge conflict after 98ab43a
1 parent a9f8fed commit 8a15d8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/Driver/Driver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5479,12 +5479,12 @@ class OffloadingActionBuilder final {
54795479
}
54805480
}
54815481

5482-
Action *makeHostLinkAction(ActionList &LinkerInputs) {
5482+
void makeHostLinkAction(ActionList &LinkerInputs) {
54835483
// Build a list of device linking actions.
54845484
ActionList DeviceAL;
54855485
appendDeviceLinkActions(DeviceAL);
54865486
if (DeviceAL.empty())
5487-
return nullptr;
5487+
return;
54885488

54895489
// Let builders add host linking actions.
54905490
for (DeviceActionBuilder *SB : SpecializedBuilders) {

0 commit comments

Comments
 (0)