git: 4ae6078a60e3 - releng/15.0 - Merge commit e24f90190c77 from llvm git (by Brad Smith):
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 30 Oct 2025 16:15:25 UTC
The branch releng/15.0 has been updated by cperciva:
URL: https://cgit.FreeBSD.org/src/commit/?id=4ae6078a60e31f7f99f2aab4adcbb14e2b841595
commit 4ae6078a60e31f7f99f2aab4adcbb14e2b841595
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2025-10-29 18:49:54 +0000
Commit: Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2025-10-30 16:14:38 +0000
Merge commit e24f90190c77 from llvm git (by Brad Smith):
[Driver] Enable outline atomics for FreeBSD/aarch64 (#156089)
The compiler_rt helper functions have been built since 12.4, 13.1, 14
and anything newer.
Approved by: re (cperciva)
MFC after: 3 days
(cherry picked from commit 51e8e8b0f36933814b1be08913857727876aece5)
(cherry picked from commit 7778507bf9344cef75f30c4089536d847da5d558)
---
contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h b/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
index 7ab63905ed4f..7d090ba682b3 100644
--- a/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
+++ b/contrib/llvm-project/clang/lib/Driver/ToolChains/FreeBSD.h
@@ -78,6 +78,11 @@ public:
void AddHIPIncludeArgs(const llvm::opt::ArgList &DriverArgs,
llvm::opt::ArgStringList &CC1Args) const override;
+ bool IsAArch64OutlineAtomicsDefault(
+ const llvm::opt::ArgList &Args) const override {
+ return true;
+ }
+
UnwindTableLevel
getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const override;
bool isPIEDefault(const llvm::opt::ArgList &Args) const override;