summaryrefslogtreecommitdiff
path: root/dev-lang/zig/files/zig-0.9.1-fix-clang16.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/zig/files/zig-0.9.1-fix-clang16.patch')
-rw-r--r--dev-lang/zig/files/zig-0.9.1-fix-clang16.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-lang/zig/files/zig-0.9.1-fix-clang16.patch b/dev-lang/zig/files/zig-0.9.1-fix-clang16.patch
deleted file mode 100644
index deb563378d76..000000000000
--- a/dev-lang/zig/files/zig-0.9.1-fix-clang16.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From: Eric Joldasov <bratishkaerik@getgoogleoff.me>
-Fix building with Clang 16
-Upstream PR https://github.com/ziglang/zig/pull/13121
-
---- a/src/stage1/parse_f128.c
-+++ b/src/stage1/parse_f128.c
-@@ -983,14 +983,14 @@ static int isspace(int c)
- return c == ' ' || (unsigned)c-'\t' < 5;
- }
-
--static inline float128_t makeInf128() {
-+static inline float128_t makeInf128(void) {
- union ldshape ux;
- ux.i2.hi = 0x7fff000000000000UL;
- ux.i2.lo = 0x0UL;
- return ux.f;
- }
-
--static inline float128_t makeNaN128() {
-+static inline float128_t makeNaN128(void) {
- uint64_t rand = 0UL;
- union ldshape ux;
- ux.i2.hi = 0x7fff000000000000UL | (rand & 0xffffffffffffUL);