Skip to content

Commit 6ba245d

Browse files
authored
Merge pull request #37027 from 3405691582/ImportConcurrencyEmplicitlyIfEnabled
2 parents c15dde4 + 72d9503 commit 6ba245d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/Frontend/Frontend.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,10 @@ static bool shouldImportConcurrencyByDefault(const llvm::Triple &target) {
761761
return true;
762762
if (target.isOSLinux())
763763
return true;
764+
#if SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY
765+
if (target.isOSOpenBSD())
766+
return true;
767+
#endif
764768
return false;
765769
}
766770

0 commit comments

Comments
 (0)