Skip to content

Commit 142a028

Browse files
committed
Adjust revisions and patches for LLVM 15
1 parent 5f5ea82 commit 142a028

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

patches/llvm-HEAD.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/libcxx/include/cmath b/libcxx/include/cmath
2-
index 65a853165..a9cd04aa0 100644
2+
index 4d81eed339d8..46c9b90b70e0 100644
33
--- a/libcxx/include/cmath
44
+++ b/libcxx/include/cmath
55
@@ -7,6 +7,9 @@
@@ -23,18 +23,18 @@ index 65a853165..a9cd04aa0 100644
2323
template <class _A1, class _A2, class _A3>
2424
inline _LIBCPP_INLINE_VISIBILITY
2525
@@ -634,8 +639,10 @@ lerp(float __a, float __b, float __t) _NOEXCEPT { return __ler
26-
_LIBCPP_HIDE_FROM_ABI constexpr double
26+
constexpr double
2727
lerp(double __a, double __b, double __t) _NOEXCEPT { return __lerp(__a, __b, __t); }
2828

2929
+#if !(defined(__NEWLIB__) && (defined(_LDBLD_EQ_DBL) || !defined(__CYGWIN__)))
30-
_LIBCPP_HIDE_FROM_ABI constexpr long double
30+
constexpr long double
3131
lerp(long double __a, long double __b, long double __t) _NOEXCEPT { return __lerp(__a, __b, __t); }
3232
+#endif
3333

3434
template <class _A1, class _A2, class _A3>
3535
inline _LIBCPP_HIDE_FROM_ABI
3636
diff --git a/libcxx/include/math.h b/libcxx/include/math.h
37-
index 0ec584af9..e26b5138a 100644
37+
index 0ec584af9dbe..e26b5138ae1b 100644
3838
--- a/libcxx/include/math.h
3939
+++ b/libcxx/include/math.h
4040
@@ -7,6 +7,9 @@

versions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
---
1919
SourceType: "standalone-build-scripts"
2020
Revisions:
21-
- Revision: HEAD
21+
- Revision: branch-15
2222
Modules:
2323
- Name: llvm.git
2424
FriendlyName: LLVM
2525
URL: https://github.com/llvm/llvm-project.git
26-
Branch: main
27-
Revision: HEAD
26+
Branch: release/15.x
27+
Revision: llvmorg-15.0.2
2828
Patch: llvm-HEAD.patch
2929
- Name: picolibc.git
3030
FriendlyName: Picolibc
3131
URL: https://github.com/picolibc/picolibc.git
3232
Branch: main
33-
Revision: HEAD
33+
Revision: 3e7c697478ecd4575056d7373ed947ded1eddf8e
3434
Patch: picolibc-HEAD.patch

0 commit comments

Comments
 (0)