Skip to content

Commit b7c76e6

Browse files
authored
Merge pull request #64377 from mhjacobson/freebsd-allow-implicit-concurrency-import
frontend: enable `shouldImportConcurrencyByDefault()` on FreeBSD
2 parents 32fa74d + 31e26a9 commit b7c76e6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/Frontend/Frontend.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -830,6 +830,8 @@ static bool shouldImportConcurrencyByDefault(const llvm::Triple &target) {
830830
return true;
831831
if (target.isOSOpenBSD())
832832
return true;
833+
if (target.isOSFreeBSD())
834+
return true;
833835
#endif
834836
return false;
835837
}

0 commit comments

Comments
 (0)